mercurial/httprepo.py
changeset 3891 6b4127c7d52a
parent 3877 abaee83ce0a6
child 4016 a195f11ed1a2
equal deleted inserted replaced
3890:2eec996f2fb9 3891:6b4127c7d52a
     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 from node import *
     9 from node import *
    10 from remoterepo import *
    10 from remoterepo import *
    11 from i18n import gettext as _
    11 from i18n import _
    12 import hg, os, urllib, urllib2, urlparse, zlib, util, httplib
    12 import hg, os, urllib, urllib2, urlparse, zlib, util, httplib
    13 import errno, keepalive, tempfile, socket, changegroup
    13 import errno, keepalive, tempfile, socket, changegroup
    14 
    14 
    15 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm):
    15 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm):
    16     def __init__(self, ui):
    16     def __init__(self, ui):