[Zodb-checkins] CVS: ZODB3/ZODB - fspack.py:1.8
Christian Reis
kiko at async.com.br
Thu May 22 15:15:56 EDT 2003
Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv7634
Modified Files:
fspack.py
Log Message:
Fix PackCopier.pack() to use 1 instead of True. Makes Python2.1 clients
happy again.
=== ZODB3/ZODB/fspack.py 1.7 => 1.8 ===
--- ZODB3/ZODB/fspack.py:1.7 Tue May 20 15:33:00 2003
+++ ZODB3/ZODB/fspack.py Thu May 22 14:15:55 2003
@@ -690,7 +690,7 @@
os.remove(self._name + ".pack")
return None
self._commit_lock_acquire()
- self.locked = True
+ self.locked = 1
self._lock_acquire()
try:
self._file.seek(0, 2)
More information about the Zodb-checkins
mailing list