diff options
-rw-r--r-- | scripts/boot.py | 2 |
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) |