Commit 67ddf18c authored by Jeremy Hylton's avatar Jeremy Hylton

Specify valid Boolean value for BDB.

parent babc359f
......@@ -40,7 +40,7 @@ class BerkeleyStorageConfig:
<fullstorage>
name %s
read-only %s
</fullstorage>""" % (path, read_only)
</fullstorage>""" % (path, read_only and "yes" or "no")
class MappingStorageConfig:
def getConfig(self, path, create, read_only):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment