diff --git a/linkcheck/configuration.py b/linkcheck/configuration.py
index 49b61e2f..55c19e8a 100644
--- a/linkcheck/configuration.py
+++ b/linkcheck/configuration.py
@@ -87,19 +87,6 @@ class Configuration (dict):
# Logger configurations
self["text"] = {
"filename": "linkchecker-out.txt",
- }
- self['html'] = {
- "filename": "linkchecker-out.html",
- 'colorbackground': '#fff7e5',
- 'colorurl': '#dcd5cf',
- 'colorborder': '#000000',
- 'colorlink': '#191c83',
- 'tablewarning': '
',
- 'tableerror': ' | ',
- 'tableok': ' | ',
- }
- self['colored'] = {
- "filename": "linkchecker-out.ansi",
'colorparent': "white",
'colorurl': "default",
'colorname': "default",
@@ -113,6 +100,16 @@ class Configuration (dict):
'colordlsize': "default",
'colorreset': "default",
}
+ self['html'] = {
+ "filename": "linkchecker-out.html",
+ 'colorbackground': '#fff7e5',
+ 'colorurl': '#dcd5cf',
+ 'colorborder': '#000000',
+ 'colorlink': '#191c83',
+ 'tablewarning': ' | ',
+ 'tableerror': ' | ',
+ 'tableok': ' | ',
+ }
self['gml'] = {
"filename": "linkchecker-out.gml",
}
@@ -132,7 +129,7 @@ class Configuration (dict):
"filename": "linkchecker-out.xml",
}
self['none'] = {}
- self['logger'] = self.logger_new('colored')
+ self['logger'] = self.logger_new('text')
self["quiet"] = False
self["warningregex"] = None
self["warnsizebytes"] = None
|