Use semicolon as default CSV separator.

This commit is contained in:
Bastian Kleineidam 2010-07-31 22:30:11 +02:00
parent 76f7f6b6a3
commit 851e1121e9
3 changed files with 4 additions and 2 deletions

View file

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

View file

@ -121,7 +121,7 @@ class Configuration (dict):
}
self['csv'] = {
"filename": "linkchecker-out.csv",
'separator': ',',
'separator': ';',
"quotechar": '"',
}
self['blacklist'] = {

View file

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