diff options
| author | 2020-05-19 20:52:24 -0400 | |
|---|---|---|
| committer | 2020-05-19 20:52:24 -0400 | |
| commit | ec1604d391ebbc14e25c52930e6ccadf3548b171 (patch) | |
| tree | e19ea1c1e60f3e3304e4a33f86296d68b3ca7d7d /bot/exts/halloween/halloweenify.py | |
| parent | 5/19 - bot | xmas, easter, evergreen - updated open statesments with explicit... (diff) | |
5/19 - ext - set upen files encoding to utf8 for bots
Diffstat (limited to 'bot/exts/halloween/halloweenify.py')
| -rw-r--r-- | bot/exts/halloween/halloweenify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/halloweenify.py b/bot/exts/halloween/halloweenify.py index 5c433a81..aae7590a 100644 --- a/bot/exts/halloween/halloweenify.py +++ b/bot/exts/halloween/halloweenify.py @@ -21,7 +21,7 @@ class Halloweenify(commands.Cog): async def halloweenify(self, ctx: commands.Context) -> None: """Change your nickname into a much spookier one!""" async with ctx.typing(): - with open(Path("bot/resources/halloween/halloweenify.json"), "r") as f: + with open(Path("bot/resources/halloween/halloweenify.json"), "r", encoding="utf8") as f: data = load(f) # Choose a random character from our list we loaded above and set apart the nickname and image url. |