diff options
| author | 2020-05-25 10:34:52 +0100 | |
|---|---|---|
| committer | 2020-05-25 10:34:52 +0100 | |
| commit | bb30d2904b4a3273d4b10dc9548c542d65f0c379 (patch) | |
| tree | e6bf89e968dd39a153227aa8ca060496d2c3cbec /bot/exts/pride/pride_anthem.py | |
| parent | Merge pull request #401 from fuzzmz/minesweeper-disabled-dm-handling (diff) | |
| parent | Remove accidental extra word from docstring (diff) | |
Merge pull request #413 from jodth07/encoding_bug_fix
Encoding bug fix
Diffstat (limited to 'bot/exts/pride/pride_anthem.py')
| -rw-r--r-- | bot/exts/pride/pride_anthem.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/pride/pride_anthem.py b/bot/exts/pride/pride_anthem.py index 186c5fff..33cb2a9d 100644 --- a/bot/exts/pride/pride_anthem.py +++ b/bot/exts/pride/pride_anthem.py @@ -34,7 +34,7 @@ class PrideAnthem(commands.Cog):      @staticmethod      def load_vids() -> list:          """Loads a list of videos from the resources folder as dictionaries.""" -        with open(Path("bot/resources/pride/anthems.json"), "r", encoding="utf-8") as f: +        with open(Path("bot/resources/pride/anthems.json"), "r", encoding="utf8") as f:              anthems = json.load(f)          return anthems | 
