# HG changeset patch # User mpm@selenic.com # Date 1127406145 25200 # Node ID 4f08da74cae86786731d6242639a0bbe0e8dc4c2 # Parent 1546c2aa6b309b631669aeeca6b97e8adc2feb7c Make incoming/outgoing show oldest first diff -r 1546c2aa6b30 -r 4f08da74cae8 mercurial/commands.py --- a/mercurial/commands.py Tue Sep 20 21:35:51 2005 -0700 +++ b/mercurial/commands.py Thu Sep 22 09:22:25 2005 -0700 @@ -1189,7 +1189,6 @@ if not o: return o = other.newer(o) - o.reverse() for n in o: show_changeset(ui, other, changenode=n) if opts['patch']: @@ -1286,7 +1285,6 @@ other = hg.repository(ui, dest) o = repo.findoutgoing(other) o = repo.newer(o) - o.reverse() for n in o: show_changeset(ui, repo, changenode=n) if opts['patch']: