Major bug fix to correctly dump tables entries

This commit is contained in:
Bernardo Damele
2008-10-26 16:10:28 +00:00
parent fc28372596
commit e07e48efb2
2 changed files with 8 additions and 5 deletions

View File

@@ -489,7 +489,10 @@ def __saveCmdline():
if datatype == "boolean":
value = "False"
elif datatype == "integer":
value = "1"
if option == "threads":
value = "1"
else:
value = "0"
elif datatype == "string":
value = ""