Mercurial > hg
changeset 18372:5965997b7023
convert: process splicemap in sorted order
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 15 Jan 2013 02:59:14 +0100 |
parents | ff2c89ebf5d4 |
children | 687ed69f6fdf |
files | hgext/convert/convcmd.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/convcmd.py Tue Jan 15 02:59:13 2013 +0100 +++ b/hgext/convert/convcmd.py Tue Jan 15 02:59:14 2013 +0100 @@ -147,7 +147,7 @@ map contains valid revision identifiers and merge the new links in the source graph. """ - for c in splicemap: + for c in sorted(splicemap): if c not in parents: if not self.dest.hascommit(self.map.get(c, c)): # Could be in source but not converted during this run