diff options
author | Kali Kaneko <kali@leap.se> | 2018-04-04 01:43:52 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-04-11 16:40:11 +0200 |
commit | 0607379f8105c2e1a706618ca0f28d9f8e135312 (patch) | |
tree | 6807df94205b9efb18527ff373047676859232b0 /src/leap/bitmask/cli | |
parent | 3169015c5f5eaed5f2ad48e486b1fe96e1eb6bbe (diff) |
[style] pep8
Diffstat (limited to 'src/leap/bitmask/cli')
-rw-r--r-- | src/leap/bitmask/cli/command.py | 4 | ||||
-rw-r--r-- | src/leap/bitmask/cli/logs.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/leap/bitmask/cli/command.py b/src/leap/bitmask/cli/command.py index a70b2d43..d31c3a00 100644 --- a/src/leap/bitmask/cli/command.py +++ b/src/leap/bitmask/cli/command.py @@ -181,5 +181,5 @@ class Command(object): if callable(errb): errb() else: - print (Fore.RED + "[ERROR] Timeout contacting the bitmask " - "daemon. Is it running?" + Fore.RESET) + print(Fore.RED + "[ERROR] Timeout contacting the bitmask " + "daemon. Is it running?" + Fore.RESET) diff --git a/src/leap/bitmask/cli/logs.py b/src/leap/bitmask/cli/logs.py index ae7acaec..311235cb 100644 --- a/src/leap/bitmask/cli/logs.py +++ b/src/leap/bitmask/cli/logs.py @@ -65,8 +65,8 @@ SUBCOMMANDS: yield line _file = open(_log_path, 'r') - print (Fore.GREEN + '[bitmask] ' + - Fore.RESET + 'Watching log file %s' % _log_path) + print(Fore.GREEN + '[bitmask] ' + + Fore.RESET + 'Watching log file %s' % _log_path) for line in _file.readlines(): print line, for line in tail(_file): |