summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/gui/app.py')
-rw-r--r--src/leap/bitmask/gui/app.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/gui/app.py b/src/leap/bitmask/gui/app.py
index 70c0051f..02600420 100644
--- a/src/leap/bitmask/gui/app.py
+++ b/src/leap/bitmask/gui/app.py
@@ -197,7 +197,9 @@ def _handle_kill(*args, **kw):
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()