##// END OF EJS Templates
mq: make use of output labeling for summary
Eric Eisner -
r11121:d061ef1d default
parent child Browse files
Show More
@@ -2668,9 +2668,9 b' def summary(orig, ui, repo, *args, **kwa'
2668 m = []
2668 m = []
2669 a, u = len(q.applied), len(q.unapplied(repo))
2669 a, u = len(q.applied), len(q.unapplied(repo))
2670 if a:
2670 if a:
2671 m.append(_("%d applied") % a)
2671 m.append(ui.label(_("%d applied"), 'qseries.applied') % a)
2672 if u:
2672 if u:
2673 m.append(_("%d unapplied") % u)
2673 m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u)
2674 if m:
2674 if m:
2675 ui.write("mq: %s\n" % ', '.join(m))
2675 ui.write("mq: %s\n" % ', '.join(m))
2676 else:
2676 else:
General Comments 0
You need to be logged in to leave comments. Login now