diff options
author | mathieui <mathieui@mathieui.net> | 2013-03-03 00:24:18 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-03-03 00:24:18 +0100 |
commit | e861290d102c4fb11157898c8bf4b098b6c002fd (patch) | |
tree | bab62cd19247899f755ab8076639fa8fb00660f0 /src/core.py | |
parent | 98850ff87700097c87364ca5b331e820bb20c2d8 (diff) | |
download | poezio-e861290d102c4fb11157898c8bf4b098b6c002fd.tar.gz poezio-e861290d102c4fb11157898c8bf4b098b6c002fd.tar.bz2 poezio-e861290d102c4fb11157898c8bf4b098b6c002fd.tar.xz poezio-e861290d102c4fb11157898c8bf4b098b6c002fd.zip |
Add a plugins_conf_dir option
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index 719d0f56..b2f5a398 100644 --- a/src/core.py +++ b/src/core.py @@ -2032,6 +2032,9 @@ class Core(object): elif option == 'plugins_dir': path = os.path.expanduser(value) self.plugin_manager.on_plugins_dir_change(path) + elif option == 'plugins_conf_dir': + path = os.path.expanduser(value) + self.plugin_manager.on_plugins_conf_dir_change(path) self.call_for_resize() self.information(info, "Info") |