diff options
| author | 2020-05-24 20:04:53 -0400 | |
|---|---|---|
| committer | 2020-05-24 20:04:53 -0400 | |
| commit | 86dad2173f0a8c6dc5d1d0646ba6441a1517052a (patch) | |
| tree | c8bc862703addc711253a083b51ae86ef993d4f5 /bot/exts/halloween/monstersurvey.py | |
| parent | 5/19 - ext - set upen files encoding to utf8 for bots (diff) | |
5/24 - bot exts - updated writing with utf8 encoding
Diffstat (limited to 'bot/exts/halloween/monstersurvey.py')
| -rw-r--r-- | bot/exts/halloween/monstersurvey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/monstersurvey.py b/bot/exts/halloween/monstersurvey.py index 3b358212..7b1a1e84 100644 --- a/bot/exts/halloween/monstersurvey.py +++ b/bot/exts/halloween/monstersurvey.py @@ -33,7 +33,7 @@ class MonsterSurvey(Cog): def json_write(self) -> None: """Write voting results to a local JSON file.""" log.info("Saved Monster Survey Results") - with open(self.registry_location, 'w') as jason: + with open(self.registry_location, 'w', encoding="utf8") as jason: json.dump(self.voter_registry, jason, indent=2) def cast_vote(self, id: int, monster: str) -> None: |