mercurial/httprepo.py
changeset 1400 cf9a1233738a
parent 1377 854775b27d1a
child 1402 9d2c2e6b32b5
equal deleted inserted replaced
1399:9a70776e355e 1400:cf9a1233738a
     5 # This software may be used and distributed according to the terms
     5 # This software may be used and distributed according to the terms
     6 # of the GNU General Public License, incorporated herein by reference.
     6 # of the GNU General Public License, incorporated herein by reference.
     7 
     7 
     8 from node import *
     8 from node import *
     9 from remoterepo import *
     9 from remoterepo import *
       
    10 from i18n import gettext as _
    10 from demandload import *
    11 from demandload import *
    11 demandload(globals(), "hg os urllib urllib2 urlparse zlib util")
    12 demandload(globals(), "hg os urllib urllib2 urlparse zlib util")
    12 
    13 
    13 class httprepository(remoterepository):
    14 class httprepository(remoterepository):
    14     def __init__(self, ui, path):
    15     def __init__(self, ui, path):