mercurial/debugcommands.py
changeset 45320 4aa484efc926
parent 45309 65a812ed9e9f
child 45445 766797f23f77
equal deleted inserted replaced
45319:6e6fe826ba69 45320:4aa484efc926
  1670     # templates
  1670     # templates
  1671     p = templater.templatedir()
  1671     p = templater.templatedir()
  1672     fm.write(b'templatedirs', b'checking templates (%s)...\n', p or b'')
  1672     fm.write(b'templatedirs', b'checking templates (%s)...\n', p or b'')
  1673     fm.condwrite(not p, b'', _(b" no template directories found\n"))
  1673     fm.condwrite(not p, b'', _(b" no template directories found\n"))
  1674     if p:
  1674     if p:
  1675         (m, fp) = templater.open_template(b"map-cmdline.default")
  1675         (m, fp) = templater.try_open_template(b"map-cmdline.default")
  1676         if m:
  1676         if m:
  1677             # template found, check if it is working
  1677             # template found, check if it is working
  1678             err = None
  1678             err = None
  1679             try:
  1679             try:
  1680                 templater.templater.frommapfile(m)
  1680                 templater.templater.frommapfile(m)