Debug: Fix __init__.py for Python 3 compatibility

This commit is contained in:
GLolol 2014-11-05 17:36:05 -08:00
parent e925069ae9
commit 1481ac38ad
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ as well as some other useful commands.
import supybot
import supybot.world as world
from sys import version_info
__version__ = "%%VERSION%%"
@ -45,6 +46,8 @@ __contributors__ = {}
from . import config
from . import plugin
if version_info[0] >= 3:
from imp import reload
reload(plugin) # In case we're being reloaded.
if world.testing: