mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-30 20:50:27 +00:00
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:
parent
a2b18be7e7
commit
d25b0d51ce
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]:
|
||||
|
|
|
|||
Loading…
Reference in a new issue