mercurial/debugcommands.py
changeset 45199 91aa9bba3dc9
parent 45149 87047efbc6a6
child 45213 d5ccc059fbcd
equal deleted inserted replaced
45198:e2ec36167151 45199:91aa9bba3dc9
  1666         re2 = b'available'
  1666         re2 = b'available'
  1667     fm.plain(_(b'checking "re2" regexp engine (%s)\n') % re2)
  1667     fm.plain(_(b'checking "re2" regexp engine (%s)\n') % re2)
  1668     fm.data(re2=bool(util._re2))
  1668     fm.data(re2=bool(util._re2))
  1669 
  1669 
  1670     # templates
  1670     # templates
  1671     p = templater.templatepaths()
  1671     p = templater.templatedir()
  1672     fm.write(b'templatedirs', b'checking templates (%s)...\n', b' '.join(p))
  1672     fm.write(b'templatedirs', b'checking templates (%s)...\n', p)
  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 = templater.templatepath(b"map-cmdline.default")
  1675         m = templater.templatepath(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