mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-27 23:33:59 +00:00
catch EOFError
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@157 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
36e3a687ed
commit
28c392783c
3 changed files with 6 additions and 3 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
|
@ -6,10 +6,11 @@ linkchecker (1.2.5) unstable; urgency=low
|
|||
* adjust #! line in linkchecker script to correct python interpreter
|
||||
(Adam Feuer <adamf@pobox.com>)
|
||||
* proper proxy config handling
|
||||
* distribution restructuring
|
||||
* RPM packages
|
||||
* distribution restructuring (now with RPM and Zip packages)
|
||||
* catch EOFError with ftp links (reported by Stan Mulder
|
||||
<stan@intrepidsoftware.com>)
|
||||
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Sun, 10 Sep 2000 18:23:19 +0200
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Mon, 11 Sep 2000 00:53:53 +0200
|
||||
|
||||
linkchecker (1.2.4) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ debug = linkcheck.Config.debug
|
|||
ExcList = [
|
||||
IOError,
|
||||
linkcheck.error,
|
||||
EOFError, # from ftplib.py
|
||||
]
|
||||
try:
|
||||
import socket
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -111,6 +111,7 @@ where the path arguments point to your SSL installation.""")
|
|||
self.scripts.append('linkchecker.bat')
|
||||
elif os.name=='posix':
|
||||
self.data_files.append(('/etc', ['linkcheckerrc']))
|
||||
os.chmod("linkchecker", 0755)
|
||||
|
||||
|
||||
setup (name = "LinkChecker",
|
||||
|
|
|
|||
Loading…
Reference in a new issue