From 8f9b15139ae75ead2c17ebdc4d924af14b806d89 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Fri, 4 Nov 2016 13:46:34 +0100 Subject: [bug] extend the list of args otherwise, we were appending a list as the last element of the list. --- src/leap/bitmask/core/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3