# HG changeset patch # User Lucas Moscovicz # Date 1391727445 28800 # Node ID 454c143b9955fb15c8416990e2f78fcf29917cc3 # Parent 827561a99569f9a597c8f81be915a46e6e0c043a revset: minor changes adding baseset to revsets Changed bits of code to work with baseset implementations. diff -r 827561a99569 -r 454c143b9955 mercurial/revset.py --- a/mercurial/revset.py Thu Feb 06 11:37:16 2014 -0800 +++ b/mercurial/revset.py Thu Feb 06 14:57:25 2014 -0800 @@ -250,7 +250,7 @@ def orset(repo, subset, x, y): xl = getset(repo, subset, x) yl = getset(repo, subset - xl, y) - return baseset(xl + yl) + return xl + yl def notset(repo, subset, x): return subset - getset(repo, subset, x)