diff --git a/__init__.py b/__init__.py index 7c3caa6..c9fcae2 100644 --- a/__init__.py +++ b/__init__.py @@ -49,14 +49,14 @@ __contributors__ = {} # This is a url where the most recent plugin package can be downloaded. __url__ = '' # 'http://supybot.com/Members/yourname/ListTracker/download' -import config -import plugin +from . import config +from . import plugin reload(plugin) # In case we're being reloaded. # Add more reloads here if you add third-party modules and want them to be # reloaded when this plugin is reloaded. Don't forget to import them as well! if world.testing: - import test + from . import test Class = plugin.Class configure = config.configure