Fix a potential traceback when creation of the plugins conf dir fails
(error during error handling)
This commit is contained in:
parent
c9059b98c7
commit
109e86cbab
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ class PluginManager(object):
|
|||
os.makedirs(self.plugins_conf_dir)
|
||||
except OSError:
|
||||
log.error('Unable to create the plugin conf dir: %s',
|
||||
plugins_conf_dir, exc_info=True)
|
||||
self.plugins_conf_dir, exc_info=True)
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue