diff --git a/linkcheck/logger/__init__.py b/linkcheck/logger/__init__.py index 9d67824f..99874ecd 100644 --- a/linkcheck/logger/__init__.py +++ b/linkcheck/logger/__init__.py @@ -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: diff --git a/linkcheck/logger/text.py b/linkcheck/logger/text.py index e4d71bb7..5965ad83 100644 --- a/linkcheck/logger/text.py +++ b/linkcheck/logger/text.py @@ -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.