diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-04 13:46:34 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-04 13:46:42 +0100 |
commit | 8f9b15139ae75ead2c17ebdc4d924af14b806d89 (patch) | |
tree | 58ec497daf1d0f3bdfff3d3bc3f4d1745afa0b12 | |
parent | 3b3b2761266dde8f21ce70e8f7cad23921996b83 (diff) |
[bug] extend the list of args
otherwise, we were appending a list as the last element of the list.
-rw-r--r-- | src/leap/bitmask/core/launcher.py | 2 |
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 |