##// END OF EJS Templates
verify: demote warning about nullid in copy to note
Matt Mackall -
r8993:46441934 default
parent child Browse files
Show More
@@ -229,7 +229,8 b' def _verify(repo):'
229 err(lr, _("empty or missing copy source revlog %s:%s")
229 err(lr, _("empty or missing copy source revlog %s:%s")
230 % (rp[0], short(rp[1])), f)
230 % (rp[0], short(rp[1])), f)
231 elif rp[1] == nullid:
231 elif rp[1] == nullid:
232 warn(_("warning: %s@%s: copy source revision is nullid %s:%s")
232 ui.note(_("warning: %s@%s: copy source"
233 " revision is nullid %s:%s\n")
233 % (f, lr, rp[0], short(rp[1])))
234 % (f, lr, rp[0], short(rp[1])))
234 else:
235 else:
235 fl2.rev(rp[1])
236 fl2.rev(rp[1])
General Comments 0
You need to be logged in to leave comments. Login now