Skip to content

Commit 74225f4

Browse files
committed
Released version 1.1.2
1 parent 8fb1e64 commit 74225f4

File tree

3 files changed

+2
-226
lines changed

3 files changed

+2
-226
lines changed

logger/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ def __init__(self):
2424

2525
def log(self, level: int, content: str):
2626
self.logger.log(level=level, msg=content)
27-
with open("log.txt", "rt") as f:
27+
with open("log.txt", "rt", encoding="utf-8") as f:
2828
self.allLogs = f.read()

0 commit comments

Comments
 (0)