mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-21 00:40:26 +00:00
Fix possible exception when trying to load pre-1.2 plugins
This commit is contained in:
parent
6eee4fb31f
commit
566d3c5ebf
@ -131,8 +131,8 @@ class PluginManagerBase:
|
|||||||
egg.activate()
|
egg.activate()
|
||||||
for name in egg.get_entry_map(self.entry_name):
|
for name in egg.get_entry_map(self.entry_name):
|
||||||
entry_point = egg.get_entry_info(self.entry_name, name)
|
entry_point = egg.get_entry_info(self.entry_name, name)
|
||||||
cls = entry_point.load()
|
|
||||||
try:
|
try:
|
||||||
|
cls = entry_point.load()
|
||||||
instance = cls(plugin_name.replace("-", "_"))
|
instance = cls(plugin_name.replace("-", "_"))
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
log.error("Unable to instantiate plugin!")
|
log.error("Unable to instantiate plugin!")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user