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 2a040a2 commit 03c8ce4Copy full SHA for 03c8ce4
checker.py
@@ -2,14 +2,15 @@
2
import os
3
import signal
4
5
+from utils import config
6
from utils import files
7
8
+config.create_config()
9
files.check_files()
10
11
from utils import webhooks as webhook
12
from utils import checker
13
from utils import console
-from utils import config
14
15
archive_name = ""
16
checked = 0
utils/files.py
@@ -24,7 +24,7 @@ def check_files():
24
f.write("")
25
26
if not os.path.isfile("data/swears.txt"):
27
- with open("data/swears.txt", "w") as f:
+ with open("data/swears.txt", "w", encoding="UTF-8") as f:
28
for swear in get_swears():
29
f.write(f"{swear}\n")
30
0 commit comments