##// END OF EJS Templates
hgweb: remove some legacy code
Dirkjan Ochtman -
r5886:dd1998dd default
parent child Browse files
Show More
@@ -854,7 +854,7 class hgweb(object):
854 854 if encoding:
855 855 headers.append(('Content-encoding', encoding))
856 856 req.header(headers)
857 archival.archive(self.repo, req.out, cnode, artype, prefix=name)
857 archival.archive(self.repo, req, cnode, artype, prefix=name)
858 858
859 859 # add tags to things
860 860 # tags -> list of changesets corresponding to tags
@@ -27,8 +27,6 class wsgirequest(object):
27 27 self.start_response = start_response
28 28 self.headers = []
29 29
30 out = property(lambda self: self)
31
32 30 def __iter__(self):
33 31 return iter([])
34 32
General Comments 0
You need to be logged in to leave comments. Login now