Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-05-27 18:31:59 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-27 18:31:59 +0300
commit4d3f632d2b7bcae2f0e8cb5ed15c41eba8afb8b3 (patch)
tree204487cb2ea43d19563f178aedf3d3c781c91006
parent3baa6b3376ace3979c345d8ceba490f3303e6aa4 (diff)
cq: Use capitalized env var name
-rw-r--r--gajim/common/configpaths.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/configpaths.py b/gajim/common/configpaths.py
index a2a096a72..a9d1cbfcd 100644
--- a/gajim/common/configpaths.py
+++ b/gajim/common/configpaths.py
@@ -113,7 +113,7 @@ class ConfigPaths:
else:
# Documents and Settings\[User Name]\Application Data\Gajim
self.config_root = self.cache_root = self.data_root = \
- Path(os.environ['appdata']) / 'Gajim'
+ Path(os.environ['APPDATA']) / 'Gajim'
else:
self.config_root = Path(GLib.get_user_config_dir()) / 'gajim'
self.cache_root = Path(GLib.get_user_cache_dir()) / 'gajim'