##// END OF EJS Templates
templater: fix output instability from gsoc patches
Augie Fackler -
r19127:d982edcf default
parent child Browse files
Show More
@@ -402,7 +402,7 b' def stylelist():'
402 402 split = file.split(".")
403 403 if split[0] == "map-cmdline":
404 404 stylelist.append(split[1])
405 return ", ".join(stylelist)
405 return ", ".join(sorted(stylelist))
406 406
407 407 class templater(object):
408 408
@@ -458,7 +458,8 b' Error if style not readable:'
458 458 Error if no style:
459 459
460 460 $ hg log --style notexist
461 abort: style not found: notexist
461 abort: style 'notexist' not found
462 (available styles: bisect, changelog, compact, default, phases, xml)
462 463 [255]
463 464
464 465 Error if style missing key:
@@ -88,7 +88,7 b' log on directory'
88 88
89 89 $ hg log -f -l1 --style something
90 90 abort: style 'something' not found
91 (available styles: changelog, bisect, default, xml, phases, compact)
91 (available styles: bisect, changelog, compact, default, phases, xml)
92 92 [255]
93 93
94 94 -f, phases style
General Comments 0
You need to be logged in to leave comments. Login now