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

Specify valid Boolean value for BDB.

parent babc359f
...@@ -40,7 +40,7 @@ class BerkeleyStorageConfig: ...@@ -40,7 +40,7 @@ class BerkeleyStorageConfig:
<fullstorage> <fullstorage>
name %s name %s
read-only %s read-only %s
</fullstorage>""" % (path, read_only) </fullstorage>""" % (path, read_only and "yes" or "no")
class MappingStorageConfig: class MappingStorageConfig:
def getConfig(self, path, create, read_only): 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