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:
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()