Fix a potential traceback when creation of the plugins conf dir fails

(error during error handling)
This commit is contained in:
mathieui 2014-05-05 23:03:26 +02:00
parent c9059b98c7
commit 109e86cbab

View file

@ -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