diff options
author | mathieui <mathieui@mathieui.net> | 2017-09-28 00:58:28 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-09-28 00:58:28 +0200 |
commit | 377b58f1e8e98afa5beb8f560609ca55cba418ce (patch) | |
tree | 7e9a062b24685d765ca81645c0929e1a7f6e0167 /scripts | |
parent | d886c4d3dcdd7ef70804eeb63d41e36fbab7f9de (diff) | |
download | poezio-377b58f1e8e98afa5beb8f560609ca55cba418ce.tar.gz poezio-377b58f1e8e98afa5beb8f560609ca55cba418ce.tar.bz2 poezio-377b58f1e8e98afa5beb8f560609ca55cba418ce.tar.xz poezio-377b58f1e8e98afa5beb8f560609ca55cba418ce.zip |
Fix the poezio_logs script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poezio_logs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poezio_logs b/scripts/poezio_logs index 59d397da..0ad89e4b 100755 --- a/scripts/poezio_logs +++ b/scripts/poezio_logs @@ -71,7 +71,7 @@ def parse_messages(fd): elif in_text: more_lines.append(line[1:]) continue - current_log = parse_message_line(line.rstrip()) + current_log = parse_message_line(line) in_text = True print_log(current_log, more_lines) |