##// END OF EJS Templates
destutil: add new local variable to increase readability...
FUJIWARA Katsunori -
r28233:9da2283d default
parent child Browse files
Show More
@@ -360,10 +360,10 b' def _statusotherbranchheads(ui, repo):'
360 l = len(heads)
360 l = len(heads)
361 if repo.revs('%ln and parents()', heads):
361 if repo.revs('%ln and parents()', heads):
362 # we are on a head
362 # we are on a head
363 heads = repo.revs('%ln - parents()', heads)
363 otherheads = repo.revs('%ln - parents()', heads)
364 if heads and l != len(heads):
364 if otherheads and l != len(otherheads):
365 ui.status(_('%i other heads for branch "%s"\n') %
365 ui.status(_('%i other heads for branch "%s"\n') %
366 (len(heads), currentbranch))
366 (len(otherheads), currentbranch))
367
367
368 def statusotherdests(ui, repo):
368 def statusotherdests(ui, repo):
369 """Print message about other head"""
369 """Print message about other head"""
General Comments 0
You need to be logged in to leave comments. Login now