Mercurial > public > mercurial-scm > hg
comparison mercurial/cmdutil.py @ 21033:254f55b64e31
debugrevlog: use unfiltered view for changelog
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 14 Apr 2014 23:27:31 -0400 |
parents | 7731a2281cf0 |
children | a1a1bd09e4f4 |
comparison
equal
deleted
inserted
replaced
21032:67b6f1144e90 | 21033:254f55b64e31 |
---|---|
221 raise util.Abort(msg) | 221 raise util.Abort(msg) |
222 | 222 |
223 r = None | 223 r = None |
224 if repo: | 224 if repo: |
225 if cl: | 225 if cl: |
226 r = repo.changelog | 226 r = repo.unfiltered().changelog |
227 elif mf: | 227 elif mf: |
228 r = repo.manifest | 228 r = repo.manifest |
229 elif file_: | 229 elif file_: |
230 filelog = repo.file(file_) | 230 filelog = repo.file(file_) |
231 if len(filelog): | 231 if len(filelog): |