mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-09 07:04:44 +00:00
Fixed log_filter_url documentation
This commit is contained in:
parent
8d98337ffe
commit
59772e4837
2 changed files with 3 additions and 3 deletions
|
|
@ -225,8 +225,8 @@ class Logger (object):
|
|||
|
||||
def log_filter_url (self, url_data, do_print):
|
||||
"""
|
||||
Log a new url with this logger if do_filter is True. Else
|
||||
only update accounting data
|
||||
Log a new url with this logger if do_print is True. Else
|
||||
only update accounting data.
|
||||
"""
|
||||
self.number += 1
|
||||
if not url_data.valid:
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ class TextLogger (Logger):
|
|||
as a default and then switch to another configured output. So we
|
||||
must not print anything out at __init__ time.
|
||||
|
||||
C{def log_filter_url (self, url_data, do_filter)}
|
||||
C{def log_filter_url (self, url_data, do_print)}
|
||||
Called every time an url finished checking. All data we checked is in
|
||||
the UrlData object url_data.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue