changeset 38599 | f9805627af1f |
parent 38444 | a0c3d83d5f04 |
child 38610 | 3d8ef60569d8 |
--- a/mercurial/debugcommands.py Sat Jun 09 18:00:26 2018 +0900 +++ b/mercurial/debugcommands.py Sat Jun 09 18:26:04 2018 +0900 @@ -884,7 +884,7 @@ tree = fileset.parse(expr) ui.note(fileset.prettyformat(tree), "\n") - for f in ctx.getfileset(expr): + for f in sorted(ctx.getfileset(expr)): ui.write("%s\n" % f) @command('debugformat',