diff options
| author | 2020-11-30 15:18:42 +0100 | |
|---|---|---|
| committer | 2020-11-30 15:18:42 +0100 | |
| commit | 0ad849431eee3cab48485a132df23b0883142cf6 (patch) | |
| tree | d9bd17fbd8f22c45e682079f6e3e565b6e17f61d /bot/exts/valentines/myvalenstate.py | |
| parent | "adding xkcd feature" (diff) | |
| parent | Merge pull request #532 from python-discord/sebastiaan/ci/add-core-dev-approv... (diff) | |
Merge branch 'master' into issue-337
Diffstat (limited to 'bot/exts/valentines/myvalenstate.py')
| -rw-r--r-- | bot/exts/valentines/myvalenstate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/myvalenstate.py b/bot/exts/valentines/myvalenstate.py index 7d8737c4..01801847 100644 --- a/bot/exts/valentines/myvalenstate.py +++ b/bot/exts/valentines/myvalenstate.py @@ -11,7 +11,7 @@ from bot.constants import Colours log = logging.getLogger(__name__) -with open(Path("bot/resources/valentines/valenstates.json"), "r") as file: +with open(Path("bot/resources/valentines/valenstates.json"), "r", encoding="utf8") as file: STATES = json.load(file) |