changeset 7:710f299ed275

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 ce33d344e202
children 708a6f651c31
files grease/__init__.py
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/grease/__init__.py	Tue Jul 12 12:29:42 2011 +0200
+++ b/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