From ad69a15e5d7d8f332823f445b721c5cb9acdfbd9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 22 Sep 2015 12:19:14 +0200 Subject: [PATCH 1/1] Fix bug described in commit 5ef685 --- scripts/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2