plugins: don't access property on uninitialized plugin
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
14ef445261
commit
8585ef18eb
1 changed files with 8 additions and 7 deletions
|
@ -158,13 +158,14 @@ class PluginManager:
|
|||
|
||||
if name in self.plugins:
|
||||
try:
|
||||
self.plugins[name]._unloading = True # Prevents loops
|
||||
for rdep in self.rdeps[name].copy():
|
||||
if rdep in self.plugins and not self.plugins[rdep]._unloading:
|
||||
self.unload(rdep)
|
||||
if rdep in self.plugins:
|
||||
log.debug('Failed to unload reverse dependency %s first.', rdep)
|
||||
return None
|
||||
if self.plugins[name] is not None:
|
||||
self.plugins[name]._unloading = True # Prevents loops
|
||||
for rdep in self.rdeps[name].copy():
|
||||
if rdep in self.plugins and not self.plugins[rdep]._unloading:
|
||||
self.unload(rdep)
|
||||
if rdep in self.plugins:
|
||||
log.debug('Failed to unload reverse dependency %s first.', rdep)
|
||||
return None
|
||||
|
||||
for command in self.commands[name].keys():
|
||||
del self.core.commands[command]
|
||||
|
|
Loading…
Reference in a new issue