mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
Use semicolon as default CSV separator.
This commit is contained in:
parent
76f7f6b6a3
commit
851e1121e9
3 changed files with 4 additions and 2 deletions
|
|
@ -27,6 +27,8 @@ Changes:
|
|||
- logging: Prefer the <a> element content as name instead of the title
|
||||
attribute.
|
||||
Closes: SF bug #3023483
|
||||
- logging: Use semicolon as default separator for CSV files so it opens
|
||||
in Excel initially.
|
||||
|
||||
Features:
|
||||
- ftp: Detect and support UTF-8 filename encoding capability of FTP
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ class Configuration (dict):
|
|||
}
|
||||
self['csv'] = {
|
||||
"filename": "linkchecker-out.csv",
|
||||
'separator': ',',
|
||||
'separator': ';',
|
||||
"quotechar": '"',
|
||||
}
|
||||
self['blacklist'] = {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ from .. import strformat, configuration
|
|||
class CSVLogger (Logger):
|
||||
"""
|
||||
CSV output, consisting of one line per entry. Entries are
|
||||
separated by a semicolon.
|
||||
separated by a separator (a semicolon per default).
|
||||
"""
|
||||
|
||||
def __init__ (self, **args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue