changeset 29:ad18c3f912c5

Made sure that the modules in the current directory are imported, and not those in the python path
author KarstenBock@gmx.net
date Tue, 12 Jul 2011 12:30:41 +0200
parents e00919fc0510
children 94cb5843dcbb
files src/parpg/grease/__init__.py
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/parpg/grease/__init__.py	Tue Jul 12 12:29:42 2011 +0200
+++ b/src/parpg/grease/__init__.py	Tue Jul 12 12:30:41 2011 +0200
@@ -16,11 +16,11 @@
 
 __all__ = ('BaseWorld', 'Entity', 'System', 'Renderer')
 
-import grease.component
-import grease.geometry
-import grease.collision
-from grease.entity import Entity
-from grease.world import BaseWorld
+import component
+import geometry
+import collision
+from entity import Entity
+from world import BaseWorld
 
 import abc