git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@204 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2000-11-23 00:14:21 +00:00
parent 60c39dbf71
commit dfb774c4b4
2 changed files with 4 additions and 4 deletions

6
debian/changelog vendored
View file

@ -2,9 +2,9 @@ linkchecker (1.2.9) unstable; urgency=low
* changed specification and better documentation of intern/extern
checking; see the FAQ for detailed information
* added a man page
* setup.py: fix for distutils debugging function dump_dirs
* setup.py: fix to handle man pages correctly with bdist_rpm target
* linkchecker.1: added a man page
* setup.py: overloaded distutils debugging function dump_dirs
* setup.py: handle man pages correctly with bdist_rpm target
-- Bastian Kleineidam <calvin@users.sourceforge.net> Wed, 22 Nov 2000 12:42:02 +0100

View file

@ -149,7 +149,7 @@ class MyConfig(config):
if self.library_dirs is None:
self.library_dirs = []
elif type(self.library_dirs) is StringType:
self.library_dirs = [self.library_dirs]
self.library_dirs = string.split(self.library_dirs, os.pathsep)
def run (self):