mercurial/commands.py
changeset 20364 a6cf48b2880d
parent 20293 2f6b3900be64
child 20389 9a86b5b8e0d8
--- a/mercurial/commands.py	Mon Feb 03 21:34:13 2014 +0100
+++ b/mercurial/commands.py	Tue Jan 21 11:39:26 2014 -0800
@@ -2558,7 +2558,7 @@
         if newtree != tree:
             ui.note(revset.prettyformat(newtree), "\n")
     func = revset.match(ui, expr)
-    for c in func(repo, range(len(repo))):
+    for c in func(repo, revset.baseset(range(len(repo)))):
         ui.write("%s\n" % c)
 
 @command('debugsetparents', [], _('REV1 [REV2]'))