mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-21 06:41:00 +00:00
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:
parent
73b942b282
commit
89e35bcf2a
3 changed files with 10 additions and 1 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue