Skip to content
Snippets Groups Projects
Commit fbce9fc5 authored by mpm's avatar mpm
Browse files

Minor fixes to verify

parent ea918853
No related branches found
No related tags found
No related merge requests found
......@@ -431,7 +431,7 @@
errors += 1
try:
changes = repo.changelog.read(n)
except Error, inst:
except Exception, inst:
ui.warn("unpacking changeset %s: %s\n" % (short(n), inst))
errors += 1
......@@ -508,8 +508,8 @@
# verify contents
try:
t = fl.read(n)
except Error, inst:
ui.warn("unpacking file %s %s: %s\n" % (f, short(n), inst))
except Exception, inst:
ui.warn("unpacking file %s %s: %s\n" % (f, hg.short(n), inst))
errors += 1
# verify parents
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment