[Zodb-checkins] CVS: Zope/lib/python/ZODB - fspack.py:1.5.4.6

Anthony Baxter anthony at interlink.com.au
Mon Aug 4 06:26:49 EDT 2003


Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv30629

Modified Files:
      Tag: Zope-2_6-branch
	fspack.py 
Log Message:
Fixed a busted reference to an imported function.


=== Zope/lib/python/ZODB/fspack.py 1.5.4.5 => 1.5.4.6 ===
--- Zope/lib/python/ZODB/fspack.py:1.5.4.5	Thu Jul  3 11:38:06 2003
+++ Zope/lib/python/ZODB/fspack.py	Mon Aug  4 05:26:42 2003
@@ -44,7 +44,7 @@
 
 def _fmt_oid(oid):
     if oid:
-        return "%016x" % ZODB.utils.u64(oid)
+        return "%016x" % u64(oid)
     return oid
 
 class CorruptedError(Exception):




More information about the Zodb-checkins mailing list