Commit bb00230a authored by Stephane Fermingier's avatar Stephane Fermingier

Fix 'unknown identifiers' errors.

parent 3a7a90f6
...@@ -114,7 +114,7 @@ def read_txn_header(f, pos, file_size, outp, ltid): ...@@ -114,7 +114,7 @@ def read_txn_header(f, pos, file_size, outp, ltid):
error("time-stamp reducation %s < %s, at %s", u64(tid), u64(ltid), pos) error("time-stamp reducation %s < %s, at %s", u64(tid), u64(ltid), pos)
if status == "c": if status == "c":
truncate(f, pos, file_size, output) truncate(f, pos, file_size, outp)
raise EOFError raise EOFError
if status not in " up": if status not in " up":
...@@ -226,7 +226,7 @@ def main(): ...@@ -226,7 +226,7 @@ def main():
opts, (inp, outp) = getopt.getopt(sys.argv[1:], "fv:pP:") opts, (inp, outp) = getopt.getopt(sys.argv[1:], "fv:pP:")
except getopt.error: except getopt.error:
die() die()
print __doc__ % argv[0] print __doc__ % sys.argv[0]
force = partial = verbose = 0 force = partial = verbose = 0
pack = None pack = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment