We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a39999d + f15c086 commit 916d41aCopy full SHA for 916d41a
1 file changed
plugins/jokes.py
@@ -29,7 +29,7 @@ def load_jokes(bot):
29
30
with codecs.open(os.path.join(bot.data_dir, "wisdom.txt"), encoding="utf-8") as f:
31
wisdom = [line.strip() for line in f.readlines() if not line.startswith("//")]
32
-
+
33
with codecs.open(os.path.join(bot.data_dir, "book_puns.txt"), encoding="utf-8") as f:
34
book_puns = [line.strip() for line in f.readlines() if not line.startswith("//")]
35
0 commit comments