Blob Blame History Raw
--- Physics-34/myelements/elements.py.orig	2019-01-07 12:58:33.582599253 +0000
+++ Physics-34/myelements/elements.py	2019-01-07 12:58:52.631791503 +0000
@@ -30,7 +30,7 @@
 
 # Load Box2D
 try:
-    import lib.Box2D as box2d
+    import Box2D as box2d
 except:
     print 'Could not load the pybox2d library (Box2D).'
     print 'Please run "setup.py install" to install the dependencies.'
--- Physics-34/physics.py.orig	2019-01-07 12:58:52.632791513 +0000
+++ Physics-34/physics.py	2019-01-07 12:59:16.770035120 +0000
@@ -33,7 +33,7 @@
 import pygame
 from pygame.locals import MOUSEBUTTONUP
 
-import lib.Box2D as box2d
+import Box2D as box2d
 import myelements as elements
 
 import tools
--- Physics-34/tools.py.orig	2018-09-06 04:16:04.000000000 +0100
+++ Physics-34/tools.py	2019-01-07 12:58:52.632791513 +0000
@@ -33,7 +33,7 @@
 from helpers import \
     tuple_to_int, distance, constructTriangleFromLine, find_body
 
-import lib.Box2D as box2d
+import Box2D as box2d
 
 from sugar3.activity import activity