summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/app2.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/gui/app2.py')
-rw-r--r--src/leap/bitmask/gui/app2.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/gui/app2.py b/src/leap/bitmask/gui/app2.py
index 5ec76b7b..8eadf1b4 100644
--- a/src/leap/bitmask/gui/app2.py
+++ b/src/leap/bitmask/gui/app2.py
@@ -118,7 +118,9 @@ def launch_backend():
global bitmaskd
check_stale_pidfile()
- bitmaskd = Process(target=run_bitmaskd)
+ bitmaskd = Process(target=run_bitmaskd,
+ kwargs={'app_name': 'Bitmask',
+ 'exec_path': sys.argv[0]})
bitmaskd.start()