From b76fb35ff1acea0b78193672b6d1ded0d3fece0c Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Tue, 31 Jan 2017 23:04:17 +0100 Subject: [bug] pass raw arguments to the default commands --- src/leap/bitmask/cli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/leap/bitmask/cli') diff --git a/src/leap/bitmask/cli/command.py b/src/leap/bitmask/cli/command.py index 15b864f..0e70d2e 100644 --- a/src/leap/bitmask/cli/command.py +++ b/src/leap/bitmask/cli/command.py @@ -82,7 +82,7 @@ class Command(object): # if command is in the default list, send the bare command # and use the default printer if args.command in self.commands: - self.data += [args.command] + self.data += [args.command] + raw_args[1:] return self._send(printer=default_dict_printer) elif (args.command == 'execute' or -- cgit v1.2.3