##// END OF EJS Templates
discovery: re-wrap expression to avoid a black bug...
Augie Fackler -
r43319:6e8582cc default
parent child Browse files
Show More
@@ -394,8 +394,10 b' def checkheads(pushop):'
394 if len(newhs) > 1:
394 if len(newhs) > 1:
395 dhs = list(newhs)
395 dhs = list(newhs)
396 if errormsg is None:
396 if errormsg is None:
397 errormsg = (_("push creates new branch '%s' "
397 errormsg = (
398 "with multiple heads") % (branch))
398 _("push creates new branch '%s' with multiple heads") %
399 branch
400 )
399 hint = _("merge or"
401 hint = _("merge or"
400 " see 'hg help push' for details about"
402 " see 'hg help push' for details about"
401 " pushing new heads")
403 " pushing new heads")
General Comments 0
You need to be logged in to leave comments. Login now