From c1974d64e5b8f03dc5fc9564f4dd8cff5f2cbc9b Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Wed, 18 Nov 2020 15:12:45 -0500 Subject: [PATCH] [PATCH]: Fix loading of plugins installed via OS's package manager. --- gajim/common/configpaths.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gajim/common/configpaths.py b/gajim/common/configpaths.py index 0ac879314..57b99f955 100644 --- a/gajim/common/configpaths.py +++ b/gajim/common/configpaths.py @@ -47,6 +47,7 @@ def get_plugin_dirs() -> List[Path]: return [Path(_paths['PLUGINS_BASE']), Path('/app/plugins')] return [Path(_paths['PLUGINS_BASE']), + Path(os.getenv['PLUGINS_OS']), Path(_paths['PLUGINS_USER'])] -- 2.29.2