summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-11-04 13:46:34 +0100
committerKali Kaneko (leap communications) <kali@leap.se>2016-11-04 13:46:42 +0100
commit8f9b15139ae75ead2c17ebdc4d924af14b806d89 (patch)
tree58ec497daf1d0f3bdfff3d3bc3f4d1745afa0b12 /src
parent3b3b2761266dde8f21ce70e8f7cad23921996b83 (diff)
[bug] extend the list of args
otherwise, we were appending a list as the last element of the list.
Diffstat (limited to 'src')
-rw-r--r--src/leap/bitmask/core/launcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/core/launcher.py b/src/leap/bitmask/core/launcher.py
index c6a2ab4..a02cb23 100644
--- a/src/leap/bitmask/core/launcher.py
+++ b/src/leap/bitmask/core/launcher.py
@@ -55,7 +55,7 @@ def run_bitmaskd():
'--logfile', getLogPath(),
]
if platform.system() != 'Windows':
- args.append([
+ args.extend([
'--pidfile', pid,
'--umask', '0022'])
sys.argv[1:] = args