##// 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 else:
130 else:
131 fname = req.form['static'][0]
131 fname = req.form['static'][0]
132 static = templater.templatepath('static')
132 static = templater.templatepath('static')
133 return staticfile(static, fname, req)
133 return (staticfile(static, fname, req),)
134
134
135 # top-level index
135 # top-level index
136 elif not virtual:
136 elif not virtual:
General Comments 0
You need to be logged in to leave comments. Login now