mercurial/commands.py
changeset 24274 9640820bc957
parent 24258 093e8a5e995f
child 24275 e1cb460a3524
equal deleted inserted replaced
24273:ce847603040b 24274:9640820bc957
  3266         end = '\0'
  3266         end = '\0'
  3267     fm = ui.formatter('files', opts)
  3267     fm = ui.formatter('files', opts)
  3268     fmt = '%s' + end
  3268     fmt = '%s' + end
  3269 
  3269 
  3270     m = scmutil.match(ctx, pats, opts)
  3270     m = scmutil.match(ctx, pats, opts)
  3271     ds = repo.dirstate
  3271     ds = ctx._repo.dirstate
  3272     for f in ctx.matches(m):
  3272     for f in ctx.matches(m):
  3273         if rev is None and ds[f] == 'r':
  3273         if rev is None and ds[f] == 'r':
  3274             continue
  3274             continue
  3275         fm.startitem()
  3275         fm.startitem()
  3276         if ui.verbose:
  3276         if ui.verbose: