mercurial/verify.py
changeset 9033 98a5652bfed9
parent 8993 46441934c585
child 9198 061eeb602354
--- a/mercurial/verify.py	Sun Jul 05 11:02:00 2009 +0200
+++ b/mercurial/verify.py	Sun Jul 05 11:04:31 2009 +0200
@@ -147,7 +147,7 @@
     if havemf:
         for c,m in sorted([(c, m) for m in mflinkrevs for c in mflinkrevs[m]]):
             err(c, _("changeset refers to unknown manifest %s") % short(m))
-        del mflinkrevs
+        mflinkrevs = None # del is bad here due to scope issues
 
         for f in sorted(filelinkrevs):
             if f not in filenodes: