mercurial/hgweb/request.py
changeset 3963 ba45041827a2
parent 3886 abaee83ce0a6
child 4250 ca639faa38a2
equal deleted inserted replaced
3962:2b8825c94c5a 3963:ba45041827a2
     4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
     4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
     5 #
     5 #
     6 # This software may be used and distributed according to the terms
     6 # This software may be used and distributed according to the terms
     7 # of the GNU General Public License, incorporated herein by reference.
     7 # of the GNU General Public License, incorporated herein by reference.
     8 
     8 
     9 import socket, sys, cgi, os, errno
     9 import socket, cgi, errno
    10 from mercurial.i18n import gettext as _
    10 from mercurial.i18n import gettext as _
    11 
    11 
    12 class wsgiapplication(object):
    12 class wsgiapplication(object):
    13     def __init__(self, destmaker):
    13     def __init__(self, destmaker):
    14         self.destmaker = destmaker
    14         self.destmaker = destmaker