diff options
Diffstat (limited to 'src/leap/bitmask')
-rw-r--r-- | src/leap/bitmask/cli/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/cli/command.py b/src/leap/bitmask/cli/command.py index 15b864ff..0e70d2e7 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 |