From 6bb9e62b3140fa975c55d9934f82cc54745d5da0 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Mon, 17 Apr 2017 18:16:33 +0200 Subject: [bug] do not fail if error is an int --- src/leap/bitmask/cli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/leap') 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) -- cgit v1.2.3