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.
--- a/mercurial/commands.py Sun Dec 13 21:54:00 2015 +0900
+++ b/mercurial/commands.py Sun Dec 13 21:55:57 2015 +0900
@@ -5407,14 +5407,15 @@
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')),