summaryrefslogtreecommitdiff
path: root/src/launcher.py
diff options
context:
space:
mode:
authorTomas Touceda <chiiph@leap.se>2013-04-09 16:53:53 -0300
committerTomas Touceda <chiiph@leap.se>2013-04-09 16:53:53 -0300
commit28ce0c44e7995e7e4629c1fa33f0f1793ba7bfaf (patch)
tree3b9513d42ad4f1d6318032590be15973a031e667 /src/launcher.py
parent5a563871fed7c7a368a3aad9bece0c6b469d2234 (diff)
Ensure events server from the launcher and change the renaming for windows
Diffstat (limited to 'src/launcher.py')
-rw-r--r--src/launcher.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/launcher.py b/src/launcher.py
index 8b6c9a2..7d95336 100644
--- a/src/launcher.py
+++ b/src/launcher.py
@@ -4,6 +4,8 @@ import time
import threading
from leap.app import main as leap_client
+from leap.common.events import server
+
from thandy.ClientCLI import update as thandy_update
@@ -37,6 +39,8 @@ class Thandy(threading.Thread):
if __name__ == "__main__":
+ server.ensure_server(port=8090)
+
thandy_thread = Thandy()
thandy_thread.daemon = True
thandy_thread.start()