mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-19 12:01:07 +00:00
Fix text output to filenames
This commit is contained in:
parent
e007d64762
commit
8e82c31fb6
1 changed files with 5 additions and 0 deletions
|
|
@ -84,6 +84,11 @@ class TextLogger (Logger):
|
|||
if self.fd is not None:
|
||||
self.fd = ansicolor.Colorizer(self.fd)
|
||||
|
||||
def start_fileoutput (self):
|
||||
"""Needed to make file descriptor color aware."""
|
||||
super(TextLogger, self).start_fileoutput()
|
||||
self.fd = ansicolor.Colorizer(self.fd)
|
||||
|
||||
def start_output (self):
|
||||
"""
|
||||
Write generic start checking info.
|
||||
|
|
|
|||
Loading…
Reference in a new issue