mercurial/commands.py
changeset 13388 a184dbd9b2c5
parent 13368 d4ab9486e514
child 13396 3e66eec9a814
--- a/mercurial/commands.py	Mon Feb 14 14:12:48 2011 -0600
+++ b/mercurial/commands.py	Fri Feb 11 20:35:32 2011 +0100
@@ -530,7 +530,7 @@
         if len(marks) == 0:
             ui.status(_("no bookmarks set\n"))
         else:
-            for bmark, n in marks.iteritems():
+            for bmark, n in sorted(marks.iteritems()):
                 if ui.configbool('bookmarks', 'track.current'):
                     current = repo._bookmarkcurrent
                     if bmark == current and n == cur: