diff mercurial/revset.py @ 20418:454c143b9955

revset: minor changes adding baseset to revsets Changed bits of code to work with baseset implementations.
author Lucas Moscovicz <lmoscovicz@fb.com>
date Thu, 06 Feb 2014 14:57:25 -0800
parents 827561a99569
children 1da346bad3d8
line wrap: on
line diff
--- 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)