diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-25 12:04:22 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:18:14 -0400 |
commit | ded1a7c7550320a9f321c80e56891bcc75fc2da1 (patch) | |
tree | 1d22912db42f1f9269aeb44d7239ff536690b581 /src/leap/bitmask/cli/command.py | |
parent | cef98e7a4b00bca59289e0c447c9e9de88503bf5 (diff) |
[refactor] change status to "failed"
Diffstat (limited to 'src/leap/bitmask/cli/command.py')
-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 76ac1f2..72d1ebc 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'): |