##// END OF EJS Templates
hgwebdir_mod: fix a performance issue with static files
Patrick Mezard -
r7560:305efd89 default
parent child Browse files
Show More
@@ -130,7 +130,7 b' class hgwebdir(object):'
130 130 else:
131 131 fname = req.form['static'][0]
132 132 static = templater.templatepath('static')
133 return staticfile(static, fname, req)
133 return (staticfile(static, fname, req),)
134 134
135 135 # top-level index
136 136 elif not virtual:
General Comments 0
You need to be logged in to leave comments. Login now