Skip to content

Commit

Permalink
Merge 9fff6bb into e2d8ef0
Browse files Browse the repository at this point in the history
  • Loading branch information
boeddeker committed Jan 30, 2018
2 parents e2d8ef0 + 9fff6bb commit 8166bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sacred/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def _get_captured_output(self):
return
text = self._output_file.get()
if isinstance(text, bytes):
text = text.decode('utf-8')
text = text.decode('utf-8', 'replace')
if self.captured_out:
text = self.captured_out + text
if self.captured_out_filter is not None:
Expand Down

0 comments on commit 8166bc4

Please sign in to comment.