diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/boot.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/boot.py b/scripts/boot.py index 5c687a2..af39b30 100644 --- a/scripts/boot.py +++ b/scripts/boot.py @@ -24,4 +24,7 @@ def boot(config, to_database = True):  	if to_database:  			dtb = database.database() -			dtb.add_measure(out, config.id, value) +			txt = '' +			for ln in out: +				txt += ln + '\n' +			dtb.add_measure(txt, config.id, value)  | 
