diff -r 705ecab649ea -r aea06029919e hgext/transplant.py --- a/hgext/transplant.py Sat Feb 18 18:00:01 2017 +0900 +++ b/hgext/transplant.py Sun Feb 19 18:16:09 2017 +0900 @@ -33,6 +33,7 @@ revlog, revset, scmutil, + smartset, util, ) @@ -723,7 +724,7 @@ s = revset.getset(repo, subset, x) else: s = subset - return revset.baseset([r for r in s if + return smartset.baseset([r for r in s if repo[r].extra().get('transplant_source')]) templatekeyword = registrar.templatekeyword()