diff options
| author | Debulois Quentin <quentin.debulois@gmail.com> | 2020-10-04 15:04:57 +0200 |
|---|---|---|
| committer | Debulois Quentin <quentin.debulois@gmail.com> | 2020-10-04 15:04:57 +0200 |
| commit | 47215153f96ff78f2f9eb1962bc1c6f12ae7fbb2 (patch) | |
| tree | fa59942488b63fc69ecaaf5698aa5fadcac512c7 /Redim/config.py | |
| parent | 339240a864bbd1901494447da9efe48aa24eccd2 (diff) | |
Résolution bug, tuple nécessaire pour supression alpha
Diffstat (limited to 'Redim/config.py')
| -rw-r--r-- | Redim/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Redim/config.py b/Redim/config.py index 2cbdafd..d618bd1 100644 --- a/Redim/config.py +++ b/Redim/config.py @@ -26,9 +26,10 @@ class Config(): "webp" ) } + self.user_profile = getenv("USERPROFILE") if platform != "linux": self.json_path = join( - getenv("USERPROFILE"), + self.user_profile, "AppData", "Local", "Redim" |
