Mercurial > evolve
changeset 1622:d49f4ad04fbd stable
debugrecordpruneparents: fix an apparent typo (marks)
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sat, 12 Mar 2016 13:15:28 +0800 |
parents | 160968654581 |
children | 498329a3c900 |
files | hgext/evolve.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/evolve.py Thu Feb 25 13:14:04 2016 +0100 +++ b/hgext/evolve.py Sat Mar 12 13:15:28 2016 +0800 @@ -1130,7 +1130,7 @@ ctx = unfi[rev] parents = tuple(p.node() for p in ctx.parents()) before = len(store._all) - store.create(tr, mark[0], mark[1], mark[2], marks[3], + store.create(tr, mark[0], mark[1], mark[2], mark[3], parents=parents) if len(store._all) - before: ui.write(_('created new markers for %i\n') % rev)