mercurial/templatefuncs.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48929 278030cc9353
equal deleted inserted replaced
48912:a0674e916fb6 48913:f254fc73d956
   908         return tokens[num]
   908         return tokens[num]
   909 
   909 
   910 
   910 
   911 def loadfunction(ui, extname, registrarobj):
   911 def loadfunction(ui, extname, registrarobj):
   912     """Load template function from specified registrarobj"""
   912     """Load template function from specified registrarobj"""
   913     for name, func in pycompat.iteritems(registrarobj._table):
   913     for name, func in registrarobj._table.items():
   914         funcs[name] = func
   914         funcs[name] = func
   915 
   915 
   916 
   916 
   917 # tell hggettext to extract docstrings from these functions:
   917 # tell hggettext to extract docstrings from these functions:
   918 i18nfunctions = funcs.values()
   918 i18nfunctions = funcs.values()