mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
corecommands: really fix 'reload'
(cherry picked from commit 150bfe8c66
)
This commit is contained in:
parent
d3ca49ceeb
commit
e342889937
@ -72,7 +72,7 @@ def load(irc, source, args):
|
||||
return
|
||||
log.info('(%s) Loading plugin %r for %s', irc.name, name, irc.getHostmask(source))
|
||||
try:
|
||||
world.plugins[name] = pl = importlib.reload(utils.loadPlugin(name))
|
||||
world.plugins[name] = pl = utils.loadPlugin(name)
|
||||
except ImportError as e:
|
||||
if str(e) == ('No module named %r' % name):
|
||||
log.exception('Failed to load plugin %r: The plugin could not be found.', name)
|
||||
@ -139,10 +139,11 @@ def unload(irc, source, args):
|
||||
|
||||
# Delete it from memory (hopefully).
|
||||
del world.plugins[name]
|
||||
if name in sys.modules:
|
||||
del sys.modules[name]
|
||||
if name in globals():
|
||||
del globals()[name]
|
||||
for n in (name, modulename):
|
||||
if n in sys.modules:
|
||||
del sys.modules[n]
|
||||
if n in globals():
|
||||
del globals()[n]
|
||||
|
||||
# Garbage collect.
|
||||
gc.collect()
|
||||
|
Loading…
Reference in New Issue
Block a user