mercurial/revset.py
changeset 23165 7e8737e6ab08
parent 23164 7a42e5d4c418
child 23166 30e0dcd7c5ff
--- a/mercurial/revset.py	Thu Oct 16 23:14:17 2014 -0700
+++ b/mercurial/revset.py	Thu Oct 16 23:15:06 2014 -0700
@@ -1257,7 +1257,7 @@
         raise error.ParseError(_("^ expects a number 0, 1, or 2"))
     ps = set()
     cl = repo.changelog
-    for r in getset(repo, baseset(cl), x):
+    for r in getset(repo, fullreposet(repo), x):
         if n == 0:
             ps.add(r)
         elif n == 1: