mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-28 15:48:16 +00:00
Add missing column name to SQL insert statement.
This commit is contained in:
parent
e9ce3b46ff
commit
f7f5001256
2 changed files with 3 additions and 1 deletions
|
|
@ -31,6 +31,8 @@ Changes:
|
|||
Fixes:
|
||||
- logging: Status was printed every second regardless of the
|
||||
configured wait time.
|
||||
- logging: Add missing column name to SQL insert command.
|
||||
Closes: GH bug #399
|
||||
- checking: Several speed and memory usage improvements.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class SQLLogger (_Logger):
|
|||
"""
|
||||
self.writeln(u"insert into %(table)s(urlname,"
|
||||
"parentname,baseref,valid,result,warning,info,url,line,col,"
|
||||
"name,checktime,dltime,size,cached,level) values ("
|
||||
"name,checktime,dltime,size,cached,level,modified) values ("
|
||||
"%(base_url)s,"
|
||||
"%(url_parent)s,"
|
||||
"%(base_ref)s,"
|
||||
|
|
|
|||
Loading…
Reference in a new issue