diff -r aa73a6327df4 -r 9ad6dae67845 mercurial/scmutil.py --- a/mercurial/scmutil.py Tue Feb 18 11:38:03 2014 -0800 +++ b/mercurial/scmutil.py Mon Feb 03 10:15:15 2014 -0800 @@ -534,7 +534,7 @@ # fall through to new-style queries if old-style fails m = revset.match(repo.ui, spec) - dl = [r for r in m(repo, revset.baseset(repo)) if r not in seen] + dl = [r for r in m(repo, revset.spanset(repo)) if r not in seen] l.extend(dl) seen.update(dl)