mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-22 09:33:20 +02:00
IGN:Don't die if you fail to decode worker redirect log
This commit is contained in:
parent
c621908aa1
commit
736e643f9f
1 changed files with 1 additions and 1 deletions
|
|
@ -131,7 +131,7 @@ def log_file(self):
|
|||
|
||||
@property
|
||||
def details(self):
|
||||
return self.log_file.read().decode('utf-8')
|
||||
return self.log_file.read().decode('utf-8', 'replace')
|
||||
|
||||
|
||||
class ParallelJob(BaseJob):
|
||||
|
|
|
|||
Loading…
Reference in a new issue