summaryrefslogtreecommitdiff
path: root/test/genini.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/genini.py')
-rwxr-xr-xtest/genini.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/genini.py b/test/genini.py
index b8eda5d46..d04f049ea 100755
--- a/test/genini.py
+++ b/test/genini.py
@@ -44,7 +44,7 @@ try:
offset = arg.find('=')
if offset == -1:
name = arg
- value = '1'
+ value = 'True'
else:
name = arg[:offset]
value = arg[offset+1:]