verify: only warn on copy nullid
authorMatt Mackall <mpm@selenic.com>
Wed, 13 Aug 2008 20:18:40 -0500
changeset 6889 c0bd7d8b69ef
parent 6888 7c36a4fb05a3
child 6890 fddef0602859
verify: only warn on copy nullid
mercurial/verify.py
--- a/mercurial/verify.py	Wed Aug 13 20:18:40 2008 -0500
+++ b/mercurial/verify.py	Wed Aug 13 20:18:40 2008 -0500
@@ -192,7 +192,7 @@
                         err(lr, _("empty or missing copy source revlog %s:%s")
                             % (rp[0], short(rp[1])), f)
                     elif rp[1] == nullid:
-                        err(lr, _("copy source revision is nullid %s:%s")
+                        warn(lr, _("copy source revision is nullid %s:%s")
                             % (rp[0], short(rp[1])), f)
                     else:
                         rev = fl2.rev(rp[1])