mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-04 12:54:42 +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
|
- logging: Prefer the <a> element content as name instead of the title
|
||||||
attribute.
|
attribute.
|
||||||
Closes: SF bug #3023483
|
Closes: SF bug #3023483
|
||||||
|
- logging: Use semicolon as default separator for CSV files so it opens
|
||||||
|
in Excel initially.
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
- ftp: Detect and support UTF-8 filename encoding capability of FTP
|
- ftp: Detect and support UTF-8 filename encoding capability of FTP
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@ class Configuration (dict):
|
||||||
}
|
}
|
||||||
self['csv'] = {
|
self['csv'] = {
|
||||||
"filename": "linkchecker-out.csv",
|
"filename": "linkchecker-out.csv",
|
||||||
'separator': ',',
|
'separator': ';',
|
||||||
"quotechar": '"',
|
"quotechar": '"',
|
||||||
}
|
}
|
||||||
self['blacklist'] = {
|
self['blacklist'] = {
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ from .. import strformat, configuration
|
||||||
class CSVLogger (Logger):
|
class CSVLogger (Logger):
|
||||||
"""
|
"""
|
||||||
CSV output, consisting of one line per entry. Entries are
|
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):
|
def __init__ (self, **args):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue