mercurial/commands.py
changeset 7570 e05aa73ce2b7
parent 7540 f1069e7f5635
child 7590 e5703ec08e64
equal deleted inserted replaced
7559:016a7319e76b 7570:e05aa73ce2b7
  1795     m.bad = lambda x,y: False
  1795     m.bad = lambda x,y: False
  1796     for abs in repo[rev].walk(m):
  1796     for abs in repo[rev].walk(m):
  1797         if not rev and abs not in repo.dirstate:
  1797         if not rev and abs not in repo.dirstate:
  1798             continue
  1798             continue
  1799         if opts.get('fullpath'):
  1799         if opts.get('fullpath'):
  1800             ui.write(os.path.join(repo.root, abs), end)
  1800             ui.write(repo.wjoin(abs), end)
  1801         else:
  1801         else:
  1802             ui.write(((pats and m.rel(abs)) or abs), end)
  1802             ui.write(((pats and m.rel(abs)) or abs), end)
  1803         ret = 0
  1803         ret = 0
  1804 
  1804 
  1805     return ret
  1805     return ret