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:
calvin 2000-09-10 23:02:17 +00:00
parent 36e3a687ed
commit 28c392783c
3 changed files with 6 additions and 3 deletions

7
debian/changelog vendored
View file

@ -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

View file

@ -23,6 +23,7 @@ debug = linkcheck.Config.debug
ExcList = [
IOError,
linkcheck.error,
EOFError, # from ftplib.py
]
try:
import socket

View file

@ -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",