diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-05-11 18:53:02 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2017-05-11 18:53:02 +0200 |
commit | 0a1545ce2ee9de30f583685504932bcc98c601f5 (patch) | |
tree | a071864eb4951b4b71384db70da048b76d4e6761 /src/leap/bitmask/cli/bitmask_cli.py | |
parent | 43a2fac71eb3dfd8ef134c2a3fb7f5e52f252304 (diff) |
[bug] pass the print_json flag to the vpn cli
- Resolves: #8887
Diffstat (limited to 'src/leap/bitmask/cli/bitmask_cli.py')
-rwxr-xr-x | src/leap/bitmask/cli/bitmask_cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/cli/bitmask_cli.py b/src/leap/bitmask/cli/bitmask_cli.py index d34a776..247b6dc 100755 --- a/src/leap/bitmask/cli/bitmask_cli.py +++ b/src/leap/bitmask/cli/bitmask_cli.py @@ -76,7 +76,7 @@ OPTIONAL ARGUMENTS: return mail.execute(raw_args) def vpn(self, raw_args): - vpn = VPN(self.cfg) + vpn = VPN(self.cfg, self.print_json) return vpn.execute(raw_args) def keys(self, raw_args): |