hgext/transplant.py
changeset 31023 aea06029919e
parent 30925 82f1ef8b4477
child 31202 2db38ef73ce8
--- 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()