##// END OF EJS Templates
revset-destination: remove usage of `set()`...
Pierre-Yves David -
r22869:a9fb3d59 default
parent child Browse files
Show More
@@ -692,9 +692,9 b' def destination(repo, subset, x):'
692 692 is the same as passing all().
693 693 """
694 694 if x is not None:
695 args = getset(repo, spanset(repo), x).set()
695 args = getset(repo, spanset(repo), x)
696 696 else:
697 args = getall(repo, spanset(repo), x).set()
697 args = getall(repo, spanset(repo), x)
698 698
699 699 dests = set()
700 700
General Comments 0
You need to be logged in to leave comments. Login now