소스 검색

Changing encoding so it doesn't break on emoji

master
Noëlle Anthony 4 년 전
부모
커밋
168f7b7614
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      main.py

+ 1
- 1
main.py 파일 보기

@@ -24,7 +24,7 @@ class TextLine:
o = "{}: {}".format(self.username, self.message.text())
self.textarea.append(o)
if self.logfile != "":
with open(self.logfile, "a") as file:
with open(self.logfile, "a", encoding="utf8") as file:
file.write(o + "\n")
self.message.clear()


Loading…
취소
저장