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/logs.py | |
parent | 3169015c5f5eaed5f2ad48e486b1fe96e1eb6bbe (diff) |
[style] pep8
Diffstat (limited to 'src/leap/bitmask/cli/logs.py')
-rw-r--r-- | src/leap/bitmask/cli/logs.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): |