##// END OF EJS Templates
py3: fix integer formatting in bisect error
Yuya Nishihara -
r36846:80da79b6 default
parent child Browse files
Show More
@@ -55,7 +55,7 b' def bisect(repo, state):'
55 if (len(state['bad']) == 1 and len(state['good']) == 1 and
55 if (len(state['bad']) == 1 and len(state['good']) == 1 and
56 state['bad'] != state['good']):
56 state['bad'] != state['good']):
57 raise error.Abort(_("starting revisions are not directly related"))
57 raise error.Abort(_("starting revisions are not directly related"))
58 raise error.Abort(_("inconsistent state, %s:%s is good and bad")
58 raise error.Abort(_("inconsistent state, %d:%s is good and bad")
59 % (badrev, short(bad)))
59 % (badrev, short(bad)))
60
60
61 # build children dict
61 # build children dict
General Comments 0
You need to be logged in to leave comments. Login now