mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix possible exception when trying to load pre-1.2 plugins
This commit is contained in:
parent
4a996a1b41
commit
d4f2c2eda8
1 changed files with 1 additions and 1 deletions
|
@ -131,8 +131,8 @@ class PluginManagerBase:
|
|||
egg.activate()
|
||||
for name in egg.get_entry_map(self.entry_name):
|
||||
entry_point = egg.get_entry_info(self.entry_name, name)
|
||||
cls = entry_point.load()
|
||||
try:
|
||||
cls = entry_point.load()
|
||||
instance = cls(plugin_name.replace("-", "_"))
|
||||
except Exception, e:
|
||||
log.error("Unable to instantiate plugin!")
|
||||
|
|
Loading…
Add table
Reference in a new issue