mercurial/hgweb/webcommands.py
branchstable
changeset 24859 64e3f97bdf08
parent 24712 bbf1ae6b6a44
child 24867 6d97ca3f05ba
equal deleted inserted replaced
24858:a99931201d1b 24859:64e3f97bdf08
  1316     try:
  1316     try:
  1317         doc = helpmod.help_(u, topicname)
  1317         doc = helpmod.help_(u, topicname)
  1318     except error.UnknownCommand:
  1318     except error.UnknownCommand:
  1319         raise ErrorResponse(HTTP_NOT_FOUND)
  1319         raise ErrorResponse(HTTP_NOT_FOUND)
  1320     return tmpl('help', topic=topicname, doc=doc)
  1320     return tmpl('help', topic=topicname, doc=doc)
       
  1321 
       
  1322 # tell hggettext to extract docstrings from these functions:
       
  1323 i18nfunctions = commands.values()