diff options
-rw-r--r-- | sos/archive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/archive.py b/sos/archive.py index 91219318..9e19426c 100644 --- a/sos/archive.py +++ b/sos/archive.py @@ -518,7 +518,7 @@ class FileCacheArchive(Archive): def open_file(self, path): path = self.dest_path(path) - return codecs.open(path, "r", encoding='utf-8') + return codecs.open(path, "r", encoding='utf-8', errors='ignore') def cleanup(self): if os.path.isdir(self._archive_root): |