Merge pull request #898 from GLolol/debug-python3

Debug: Fix __init__.py for Python 3 compatibility
This commit is contained in:
Valentin Lorentz 2014-11-06 04:04:48 +01:00
commit 69bfcf5121
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: