diff options
author | mathieui <mathieui@mathieui.net> | 2014-05-05 23:03:26 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-05-05 23:04:13 +0200 |
commit | 109e86cbabf6b294b6b7235dee2aeb8afd582459 (patch) | |
tree | addcc2cdd4488c082d806f8c99833753f7f71e61 | |
parent | c9059b98c7e5012a173bd5422d12e59f50dd7206 (diff) | |
download | poezio-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)
-rw-r--r-- | src/plugin_manager.py | 2 |
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 |