We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fb1e64 commit 74225f4Copy full SHA for 74225f4
logger/__init__.py
@@ -24,5 +24,5 @@ def __init__(self):
24
25
def log(self, level: int, content: str):
26
self.logger.log(level=level, msg=content)
27
- with open("log.txt", "rt") as f:
+ with open("log.txt", "rt", encoding="utf-8") as f:
28
self.allLogs = f.read()
0 commit comments