mercurial/hgweb/webcommands.py
changeset 37512 aac97d043e6d
parent 37510 876d54f800cf
child 37674 f83cb91b052e
--- a/mercurial/hgweb/webcommands.py	Sun Apr 01 22:32:34 2018 +0900
+++ b/mercurial/hgweb/webcommands.py	Sun Apr 01 22:33:55 2018 +0900
@@ -1164,7 +1164,7 @@
     allowed = web.configlist("web", "allow_archive")
     key = web.req.qsparams['node']
 
-    if type_ not in web.archivespecs:
+    if type_ not in webutil.archivespecs:
         msg = 'Unsupported archive type: %s' % type_
         raise ErrorResponse(HTTP_NOT_FOUND, msg)
 
@@ -1193,7 +1193,7 @@
                 raise ErrorResponse(HTTP_NOT_FOUND,
                     'file(s) not found: %s' % file)
 
-    mimetype, artype, extension, encoding = web.archivespecs[type_]
+    mimetype, artype, extension, encoding = webutil.archivespecs[type_]
 
     web.res.headers['Content-Type'] = mimetype
     web.res.headers['Content-Disposition'] = 'attachment; filename=%s%s' % (