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:
authorlovetox <philipp@hoerist.com>2021-02-21 17:10:11 +0300
committerlovetox <philipp@hoerist.com>2021-02-27 14:54:10 +0300
commit8df76a0a45c2f2357a69add8d1607de4b50d5e46 (patch)
tree306929082fa42b63afe33c94e0edc5108be07a66
parent62ec5f979e7544eac73f30cc11a7ffbf57117af7 (diff)
Windows: Fix launcher
-rw-r--r--win/misc/create-launcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/misc/create-launcher.py b/win/misc/create-launcher.py
index 42c3c1409..d23b54a96 100644
--- a/win/misc/create-launcher.py
+++ b/win/misc/create-launcher.py
@@ -89,7 +89,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PySys_SetArgvEx(__argc, szArglist, 0);
result = PyRun_SimpleString(
"import sys; import os;"
- "os.environ['GAJIM_DEBUG'] = %s;"
+ "os.environ['GAJIM_DEBUG'] = '%s';"
"sys.frozen=True;"
"from pathlib import Path;"
"root_path = Path(sys.executable).parents[1];"