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/evergreen/branding.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/evergreen/branding.py')
| -rw-r--r-- | bot/exts/evergreen/branding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/branding.py b/bot/exts/evergreen/branding.py index 6553830c..7e531011 100644 --- a/bot/exts/evergreen/branding.py +++ b/bot/exts/evergreen/branding.py @@ -179,7 +179,7 @@ class BrandingManager(commands.Cog): current_config = self._read_config() current_config[key] = value - with self.config_file.open("w") as persistent_file: + with self.config_file.open("w", encoding="utf8") as persistent_file: json.dump(current_config, persistent_file) async def _daemon_func(self) -> None: |