mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-27 19:20:30 +00:00
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:
parent
9c18143066
commit
3f59c6b6d4
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue