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-29 01:04:44 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-29 12:43:30 +0300
commitae5ac2d3a1d582b586d58a2408dab095e3c398ff (patch)
tree4a1b61f4fd5aa86a30e65ac6cae01143ec9c4bdb /launch.py
parentbbc6c55d85362de5cbc2aab65680e9525518443f (diff)
refactor: Rename main application entry points
Diffstat (limited to 'launch.py')
-rwxr-xr-xlaunch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch.py b/launch.py
index e5757eace..62147b46b 100755
--- a/launch.py
+++ b/launch.py
@@ -3,7 +3,7 @@
import subprocess
import gajim
-from gajim.gajim import main
+import gajim.main
try:
res = subprocess.check_output(
@@ -12,4 +12,4 @@ try:
except Exception:
pass
-main()
+gajim.main.run()