From: Karel Kočí Date: Tue, 22 Sep 2015 10:19:14 +0000 (+0200) Subject: Fix bug described in commit 5ef685 X-Git-Tag: v201509~2 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/linux-conf-perf.git/commitdiff_plain/ad69a15e5d7d8f332823f445b721c5cb9acdfbd9 Fix bug described in commit 5ef685 --- diff --git a/scripts/boot.py b/scripts/boot.py index 88da817..c12bb79 100644 --- a/scripts/boot.py +++ b/scripts/boot.py @@ -39,7 +39,7 @@ def boot(config, to_database = True): txt = '' for ln in out: for c in ln: - if c == '\x00': + if c == b'\0': c = ' ' txt += ln + '\n' dtb.add_measure(txt, result, config.id, value)