diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/clean_webconsole.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/clean_webconsole.py b/tools/clean_webconsole.py index 550ace9a..56bd9e2b 100644 --- a/tools/clean_webconsole.py +++ b/tools/clean_webconsole.py @@ -9,7 +9,9 @@ lines = sys.stdin.read().split('\n') for line in lines: if line.startswith('['): line = line[15:] - if line.startswith(('[', ']')): - line = line.split('@')[0] + line = line.split(' @ ')[0] print line +for i in range(100): + print + |