##// END OF EJS Templates
revset-origin: remove usage of `set()`...
Pierre-Yves David -
r22872:45afc865 default
parent child Browse files
Show More
@@ -1151,9 +1151,9 b' def origin(repo, subset, x):'
1151 1151 for the first operation is selected.
1152 1152 """
1153 1153 if x is not None:
1154 args = getset(repo, spanset(repo), x).set()
1154 args = getset(repo, spanset(repo), x)
1155 1155 else:
1156 args = getall(repo, spanset(repo), x).set()
1156 args = getall(repo, spanset(repo), x)
1157 1157
1158 1158 def _firstsrc(rev):
1159 1159 src = _getrevsource(repo, rev)
General Comments 0
You need to be logged in to leave comments. Login now