diff options
Diffstat (limited to 'bot/exts/valentines/whoisvalentine.py')
| -rw-r--r-- | bot/exts/valentines/whoisvalentine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/whoisvalentine.py b/bot/exts/valentines/whoisvalentine.py index 4ca0289c..0ff9186c 100644 --- a/bot/exts/valentines/whoisvalentine.py +++ b/bot/exts/valentines/whoisvalentine.py @@ -10,7 +10,7 @@ from bot.constants import Colours log = logging.getLogger(__name__) -with open(Path("bot/resources/valentines/valentine_facts.json"), "r") as file: +with open(Path("bot/resources/valentines/valentine_facts.json"), "r", encoding="utf8") as file: FACTS = json.load(file) |