Преглед изворни кода

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…
Откажи
Сачувај