[Zodb-checkins] CVS: Zope/lib/python/ZODB - fsrecover.py:1.17
Stefane Fermigier
sf at fermigier.com
Sun Mar 21 11:11:15 EST 2004
Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv7999
Modified Files:
fsrecover.py
Log Message:
Fix 'unknown identifiers' errors.
=== Zope/lib/python/ZODB/fsrecover.py 1.16 => 1.17 ===
--- Zope/lib/python/ZODB/fsrecover.py:1.16 Thu Feb 26 19:31:53 2004
+++ Zope/lib/python/ZODB/fsrecover.py Sun Mar 21 11:11:13 2004
@@ -114,7 +114,7 @@
error("time-stamp reducation %s < %s, at %s", u64(tid), u64(ltid), pos)
if status == "c":
- truncate(f, pos, file_size, output)
+ truncate(f, pos, file_size, outp)
raise EOFError
if status not in " up":
@@ -226,7 +226,7 @@
opts, (inp, outp) = getopt.getopt(sys.argv[1:], "fv:pP:")
except getopt.error:
die()
- print __doc__ % argv[0]
+ print __doc__ % sys.argv[0]
force = partial = verbose = 0
pack = None
More information about the Zodb-checkins
mailing list