From 109e86cbabf6b294b6b7235dee2aeb8afd582459 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 5 May 2014 23:03:26 +0200 Subject: Fix a potential traceback when creation of the plugins conf dir fails (error during error handling) --- src/plugin_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugin_manager.py') diff --git a/src/plugin_manager.py b/src/plugin_manager.py index fc8de462..af87a23b 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -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 -- cgit v1.2.3