Fixed log_filter_url documentation

This commit is contained in:
Bastian Kleineidam 2009-03-02 23:40:36 +01:00
parent 8d98337ffe
commit 59772e4837
2 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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.