use local httplib

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@611 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2002-11-22 19:29:31 +00:00
parent 9c18143066
commit 3f59c6b6d4
2 changed files with 4 additions and 2 deletions

View file

@ -15,7 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import httplib, urlparse, sys, time, re
import urlparse, sys, time, re
import linkcheck.httplib as httplib
import Config, StringUtil, robotparser, linkcheck
if Config.DebugLevel > 0:
robotparser.debug = 1

View file

@ -17,7 +17,8 @@
from UrlData import UrlData
from HttpUrlData import HttpUrlData
import httplib, linkcheck, Config
import linkcheck, Config
import linkcheck.httplib as httplib
_supportHttps = hasattr(httplib, "HTTPSConnection")