summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/cli
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-08-25 12:04:22 -0400
committerKali Kaneko <kali@leap.se>2017-08-30 16:18:14 -0400
commitded1a7c7550320a9f321c80e56891bcc75fc2da1 (patch)
tree1d22912db42f1f9269aeb44d7239ff536690b581 /src/leap/bitmask/cli
parentcef98e7a4b00bca59289e0c447c9e9de88503bf5 (diff)
[refactor] change status to "failed"
Diffstat (limited to 'src/leap/bitmask/cli')
-rw-r--r--src/leap/bitmask/cli/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/cli/command.py b/src/leap/bitmask/cli/command.py
index 76ac1f25..72d1ebcf 100644
--- a/src/leap/bitmask/cli/command.py
+++ b/src/leap/bitmask/cli/command.py
@@ -75,7 +75,7 @@ def print_status(status, depth=0):
line = Fore.RESET + name.ljust(12)
if v['status'] in ('on', 'starting'):
line += Fore.GREEN
- elif v['status'] == 'failure':
+ elif v['status'] == 'failed':
line += Fore.RED
line += v['status']
if v.get('error'):