##// END OF EJS Templates
revset: drop argument when it's None...
av6 -
r42927:911e25dc default
parent child Browse files
Show More
@@ -1695,7 +1695,7 b' def stack(repo, subset, x):'
1695 parent. (EXPERIMENTAL)
1695 parent. (EXPERIMENTAL)
1696 """
1696 """
1697 if x is None:
1697 if x is None:
1698 stacks = stackmod.getstack(repo, x)
1698 stacks = stackmod.getstack(repo)
1699 else:
1699 else:
1700 stacks = smartset.baseset([])
1700 stacks = smartset.baseset([])
1701 for revision in getset(repo, fullreposet(repo), x):
1701 for revision in getset(repo, fullreposet(repo), x):
General Comments 0
You need to be logged in to leave comments. Login now