##// END OF EJS Templates
i18n: show localized messages for commands/extensions in hgweb help top (issue3383)...
FUJIWARA Katsunori -
r16469:dd68c972 stable
parent child Browse files
Show More
@@ -806,7 +806,7 b' def graph(web, req, tmpl):'
806 806 def _getdoc(e):
807 807 doc = e[0].__doc__
808 808 if doc:
809 doc = doc.split('\n')[0]
809 doc = _(doc).split('\n')[0]
810 810 else:
811 811 doc = _('(no help text available)')
812 812 return doc
General Comments 0
You need to be logged in to leave comments. Login now