__init__ with python3 support

This commit is contained in:
Nicolas Coevoet 2013-10-22 14:14:46 +02:00
parent d1afd5ae1d
commit 8ca5d07244

View File

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