[Zodb-checkins] CVS: ZODB4/BDBStorage - BDBFullStorage.py:2.1
Barry Warsaw
barry@wooz.org
Wed, 4 Dec 2002 14:54:49 -0500
Update of /cvs-repository/ZODB4/BDBStorage
In directory cvs.zope.org:/tmp/cvs-serv19769
Modified Files:
BDBFullStorage.py
Log Message:
_dopack(): The API of TimeStamp has changed -- use .raw() to get the
8-byte representation, not repr.
=== ZODB4/BDBStorage/BDBFullStorage.py 2.0 => 2.1 ===
--- ZODB4/BDBStorage/BDBFullStorage.py:2.0 Wed Dec 4 14:41:52 2002
+++ ZODB4/BDBStorage/BDBFullStorage.py Wed Dec 4 14:54:49 2002
@@ -1344,7 +1344,7 @@
# minimum of t and now.
packtime = min(t, time.time())
t0 = TimeStamp(*(time.gmtime(packtime)[:5] + (packtime % 60,)))
- packtid = `t0`
+ packtid = t0.raw()
# Collect all revisions of all objects earlier than the pack time.
self._lock_acquire()
try: