Skip to content
Snippets Groups Projects
Commit 0fc41f88 authored by Mads Kiilerich's avatar Mads Kiilerich
Browse files

transplant: use set for prune lookup

parent d5f968f7
No related branches found
No related tags found
No related merge requests found
......@@ -633,8 +633,8 @@
tf = tp.transplantfilter(repo, source, p1)
if opts.get('prune'):
prune = [source.lookup(r)
for r in scmutil.revrange(source, opts.get('prune'))]
prune = set(source.lookup(r)
for r in scmutil.revrange(source, opts.get('prune')))
matchfn = lambda x: tf(x) and x not in prune
else:
matchfn = tf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment