Extracted loadPlugin{Module,Class} behavior into separate functions that can be exported to all modules.

This commit is contained in:
Jeremy Fincher 2003-09-18 05:52:55 +00:00
parent a765308cbd
commit a16bb77cba
1 changed files with 2 additions and 8 deletions

View File

@ -247,20 +247,14 @@ class OwnerCommands(privmsgs.CapabilityCheckingPrivmsg):
"""
name = privmsgs.getArgs(args)
callbacks = irc.removeCallback(name)
if callbacks:
try:
moduleInfo = imp.find_module(name, conf.pluginDirs)
module = imp.load_module(name, *moduleInfo)
linecache.checkcache()
module = loadPluginModule(name)
for callback in callbacks:
callback.die()
del callback
gc.collect()
callback = module.Class()
irc.addCallback(callback)
if hasattr(callback, 'configure'):
callback.configure(irc)
callback = loadPluginClass(irc, module)
irc.reply(msg, conf.replySuccess)
except ImportError:
for callback in callbacks: