[Zodb-checkins] CVS: Zope/lib/python/ZODB/FileStorage -
FileStorage.py:1.6
Jeremy Hylton
jeremy at zope.com
Thu Feb 26 17:53:24 EST 2004
Update of /cvs-repository/Zope/lib/python/ZODB/FileStorage
In directory cvs.zope.org:/tmp/cvs-serv17414/ZODB/FileStorage
Modified Files:
FileStorage.py
Log Message:
Make the defaults bools instead of ints.
=== Zope/lib/python/ZODB/FileStorage/FileStorage.py 1.5 => 1.6 ===
--- Zope/lib/python/ZODB/FileStorage/FileStorage.py:1.5 Thu Feb 26 13:05:22 2004
+++ Zope/lib/python/ZODB/FileStorage/FileStorage.py Thu Feb 26 17:53:23 2004
@@ -116,7 +116,7 @@
quota=None):
if read_only:
- self._is_read_only = 1
+ self._is_read_only = True
if create:
raise ValueError("can't create a read-only file")
elif stop is not None:
More information about the Zodb-checkins
mailing list