##// END OF EJS Templates
c0bd7d8b69ef uses err() instead of warn() but prototype doesn't match...
Benoit Boissinot -
r7004:90227c42 default
parent child Browse files
Show More
@@ -207,8 +207,8 b' def _verify(repo):'
207 err(lr, _("empty or missing copy source revlog %s:%s")
207 err(lr, _("empty or missing copy source revlog %s:%s")
208 % (rp[0], short(rp[1])), f)
208 % (rp[0], short(rp[1])), f)
209 elif rp[1] == nullid:
209 elif rp[1] == nullid:
210 warn(lr, _("copy source revision is nullid %s:%s")
210 warn(_("warning: %s@%s: copy source revision is nullid %s:%s")
211 % (rp[0], short(rp[1])), f)
211 % (f, lr, rp[0], short(rp[1])))
212 else:
212 else:
213 rev = fl2.rev(rp[1])
213 rev = fl2.rev(rp[1])
214 except Exception, inst:
214 except Exception, inst:
General Comments 0
You need to be logged in to leave comments. Login now