Catch socket.sslerror for HTTPS connections.

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@385 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2002-03-19 23:30:24 +00:00
parent 73b942b282
commit 89e35bcf2a
3 changed files with 10 additions and 1 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
linkchecker (1.4.1) unstable; urgency=low
* Catch socket.sslerror for HTTPS connections.
-- Bastian Kleineidam <calvin@debian.org> Wed, 20 Mar 2002 00:27:13 +0100
linkchecker (1.4.0) unstable; urgency=low
* linkcheck/linkname.py: workaround for a bug regex matching with

View file

@ -63,6 +63,9 @@ ExcList = [
select.error,
]
if hasattr(socket, "sslerror"):
ExcList.append(socket.sslerror)
# regular expression to match an HTML tag with one given attribute
_linkMatcher = r"""
(?i) # case insensitive

View file

@ -129,7 +129,7 @@ myname = "Bastian Kleineidam"
myemail = "calvin@users.sourceforge.net"
setup (name = "linkchecker",
version = "1.4.0",
version = "1.4.1",
description = "check HTML documents for broken links",
author = myname,
author_email = myemail,