mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Merge pull request #898 from GLolol/debug-python3
Debug: Fix __init__.py for Python 3 compatibility
This commit is contained in:
commit
69bfcf5121
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user