diff mercurial/hgweb/hgwebdir_mod.py @ 36920:6ff6e1d6b5b8

templater: move stringify() to templateutil module As we have a util module, it doesn't make sense to import stringify() from templatefilters.py.
author Yuya Nishihara <yuya@tcha.org>
date Thu, 08 Mar 2018 23:10:46 +0900
parents f0a851542a05
children c479692690ef
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py	Wed Feb 28 15:20:41 2018 -0500
+++ b/mercurial/hgweb/hgwebdir_mod.py	Thu Mar 08 23:10:46 2018 +0900
@@ -34,6 +34,7 @@
     pycompat,
     scmutil,
     templater,
+    templateutil,
     ui as uimod,
     util,
 )
@@ -370,7 +371,7 @@
             virtual = req.dispatchpath.strip('/')
             tmpl = self.templater(req, nonce)
             ctype = tmpl('mimetype', encoding=encoding.encoding)
-            ctype = templater.stringify(ctype)
+            ctype = templateutil.stringify(ctype)
 
             # Global defaults. These can be overridden by any handler.
             res.status = '200 Script output follows'