diff options
Diffstat (limited to 'src/leap')
-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 da0c40b0..7bc2ce7b 100644 --- a/src/leap/bitmask/cli/command.py +++ b/src/leap/bitmask/cli/command.py @@ -65,7 +65,7 @@ def print_status(status, depth=0): line += Fore.RED line += v['status'] if v['error']: - line += Fore.RED + " (" + v['error'] + ")" + line += Fore.RED + " (%s)" % v['error'] line += Fore.RESET print(line) |