changeset 1286:4f08da74cae8

Make incoming/outgoing show oldest first
author mpm@selenic.com
date Thu, 22 Sep 2005 09:22:25 -0700
parents 1546c2aa6b30
children 3b717f27ffea
files mercurial/commands.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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']: