aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-09-22 12:19:14 +0200
committerKarel Kočí <cynerd@email.cz>2015-09-22 12:19:14 +0200
commitad69a15e5d7d8f332823f445b721c5cb9acdfbd9 (patch)
treef610d8a7d39846b272e98da1803923d39185b8ac
parent769a43b767212ce6e0cb6cebf396130c2b54dee0 (diff)
downloadlinux-conf-perf-ad69a15e5d7d8f332823f445b721c5cb9acdfbd9.tar.gz
linux-conf-perf-ad69a15e5d7d8f332823f445b721c5cb9acdfbd9.tar.bz2
linux-conf-perf-ad69a15e5d7d8f332823f445b721c5cb9acdfbd9.zip
Fix bug described in commit 5ef685
-rw-r--r--scripts/boot.py2
1 files changed, 1 insertions, 1 deletions
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)