# HG changeset patch # User Yuya Nishihara # Date 2015-12-13 12:55:57 # Node ID 64ee5866e1076b864ca91b215012bb2a438b99b7 # Parent c36fa631cb6ebfc1549127ab7f1d5cd542908283 paths: reorder else clause for readability of subsequent patches This prepares for porting to the formatter API. Future patches will use a single loop to handle both search=None|pattern cases because formatter output should be the same. "pathitems" will be switched instead. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5407,14 +5407,15 @@ def paths(ui, repo, search=None): ui.warn(_("not found!\n")) return 1 else: - for name, path in sorted(ui.paths.iteritems()): - if ui.quiet: - ui.write("%s\n" % name) - else: - ui.write("%s = %s\n" % (name, - util.hidepassword(path.rawloc))) - for subopt, value in sorted(path.suboptions.items()): - ui.write('%s:%s = %s\n' % (name, subopt, value)) + pathitems = sorted(ui.paths.iteritems()) + + for name, path in pathitems: + if ui.quiet: + ui.write("%s\n" % name) + else: + ui.write("%s = %s\n" % (name, util.hidepassword(path.rawloc))) + for subopt, value in sorted(path.suboptions.items()): + ui.write('%s:%s = %s\n' % (name, subopt, value)) @command('phase', [('p', 'public', False, _('set changeset phase to public')),