summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-05-05 23:03:26 +0200
committermathieui <mathieui@mathieui.net>2014-05-05 23:04:13 +0200
commit109e86cbabf6b294b6b7235dee2aeb8afd582459 (patch)
treeaddcc2cdd4488c082d806f8c99833753f7f71e61 /src
parentc9059b98c7e5012a173bd5422d12e59f50dd7206 (diff)
downloadpoezio-109e86cbabf6b294b6b7235dee2aeb8afd582459.tar.gz
poezio-109e86cbabf6b294b6b7235dee2aeb8afd582459.tar.bz2
poezio-109e86cbabf6b294b6b7235dee2aeb8afd582459.tar.xz
poezio-109e86cbabf6b294b6b7235dee2aeb8afd582459.zip
Fix a potential traceback when creation of the plugins conf dir fails
(error during error handling)
Diffstat (limited to 'src')
-rw-r--r--src/plugin_manager.py2
1 files changed, 1 insertions, 1 deletions
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