mercurial/scmutil.py
changeset 17675 8575f4a2126e
parent 17649 f65c6a5f256c
child 17681 a41fd730f230
equal deleted inserted replaced
17674:e69274f8d444 17675:8575f4a2126e
   629         except error.RepoLookupError:
   629         except error.RepoLookupError:
   630             pass
   630             pass
   631 
   631 
   632         # fall through to new-style queries if old-style fails
   632         # fall through to new-style queries if old-style fails
   633         m = revset.match(repo.ui, spec)
   633         m = revset.match(repo.ui, spec)
   634         dl = [r for r in m(repo, xrange(len(repo))) if r not in seen]
   634         dl = [r for r in m(repo, list(repo)) if r not in seen]
   635         l.extend(dl)
   635         l.extend(dl)
   636         seen.update(dl)
   636         seen.update(dl)
   637 
   637 
   638     return l
   638     return l
   639 
   639