1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix for error when saving logs.

This commit is contained in:
Joe R 2021-11-20 11:05:38 -05:00
parent 2d87058ce8
commit 660445ece4

View file

@ -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)