fix denyllow match for intern patterns

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@972 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-08-05 12:20:55 +00:00
parent a2b18be7e7
commit d25b0d51ce

View file

@ -450,7 +450,7 @@ class UrlData:
match = entry['pattern'].search(self.url)
if (entry['negate'] and not match) or \
(match and not entry['negate']):
return (1, 0)
return (0, 0)
return (0, 0)
else:
for entry in self.config["internlinks"]: