diff --git a/pysollib/stats.py b/pysollib/stats.py index 069a9c05..a50a4900 100644 --- a/pysollib/stats.py +++ b/pysollib/stats.py @@ -172,7 +172,7 @@ class FileStatsFormatter(PysolStatsFormatter): self.file = file def p(self, s): - self.file.write(s.encode('utf-8')) + self.file.write(s) def nl(self, count=1): self.p("\n" * count)