diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-18 22:18:16 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-19 20:14:28 +0200 |
commit | 71c341b9aea1097e0d8f4ccc2eee9728599ea8b0 (patch) | |
tree | ea0d6158f857a972294e63064d798663a45b2304 /src/leap/bitmask/cli | |
parent | 5e6de17902f73ea0ac48eeda77216a302bd0872f (diff) |
[bug] pass along no polkit error
Diffstat (limited to 'src/leap/bitmask/cli')
-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 7bc2ce7..77d2bdf 100644 --- a/src/leap/bitmask/cli/command.py +++ b/src/leap/bitmask/cli/command.py @@ -154,7 +154,7 @@ class Command(object): else: return printer(obj['result']) else: - print Fore.RED + 'ERROR:' + '%s' % obj['error'] + Fore.RESET + print Fore.RED + 'ERROR: ' + '%s' % obj['error'] + Fore.RESET def _timeout_handler(self, failure, errb): if failure.trap(ZmqRequestTimeoutError) == ZmqRequestTimeoutError: |