diff options
Diffstat (limited to 'bot/exts/halloween/hacktoberstats.py')
| -rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index d63ce39d..db5e37f2 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -145,7 +145,7 @@ class HacktoberStats(commands.Cog):              }          """          logging.info(f"Saving linked_accounts to '{self.link_json}'") -        with open(self.link_json, 'w') as file: +        with open(self.link_json, 'w', encoding="utf8") as file:              json.dump(self.linked_accounts, file, default=str)          logging.info(f"linked_accounts saved to '{self.link_json}'") | 
