mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-22 23:24:44 +00:00
fix incorrect call to the logging module (Closes: #847208)
This commit is contained in:
parent
17bd5f5e89
commit
71be9b941b
1 changed files with 2 additions and 2 deletions
|
|
@ -71,10 +71,10 @@ class FormFinder(object):
|
|||
value = attrs.get('value')
|
||||
self.form.add_value(key, value)
|
||||
else:
|
||||
log.warning(LOG_CHECK, "nameless form input %s" % attrs)
|
||||
log.warn(LOG_CHECK, "nameless form input %s" % attrs)
|
||||
pass
|
||||
else:
|
||||
log.warning(LOG_CHECK, "formless input´%s" % attrs)
|
||||
log.warn(LOG_CHECK, "formless input´%s" % attrs)
|
||||
pass
|
||||
|
||||
def start_end_element(self, tag, attrs):
|
||||
|
|
|
|||
Loading…
Reference in a new issue