diff options
-rw-r--r-- | scripts/boot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/boot.py b/scripts/boot.py index 31328a1..88da817 100644 --- a/scripts/boot.py +++ b/scripts/boot.py @@ -38,5 +38,8 @@ def boot(config, to_database = True): dtb = database.database() txt = '' for ln in out: + for c in ln: + if c == '\x00': + c = ' ' txt += ln + '\n' dtb.add_measure(txt, result, config.id, value) |