# HG changeset patch # User KarstenBock@gmx.net # Date 1310466641 -7200 # Node ID ad18c3f912c5ff78a473ab659994fb122178b4f9 # Parent e00919fc051038fa97dcd8655dabf6429271e794 Made sure that the modules in the current directory are imported, and not those in the python path diff -r e00919fc0510 -r ad18c3f912c5 src/parpg/grease/__init__.py --- 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