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