diff options
author | 2020-05-25 10:34:52 +0100 | |
---|---|---|
committer | 2020-05-25 10:34:52 +0100 | |
commit | bb30d2904b4a3273d4b10dc9548c542d65f0c379 (patch) | |
tree | e6bf89e968dd39a153227aa8ca060496d2c3cbec /bot/utils | |
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/utils')
-rw-r--r-- | bot/utils/persist.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/utils/persist.py b/bot/utils/persist.py index d78e5420..1e178569 100644 --- a/bot/utils/persist.py +++ b/bot/utils/persist.py @@ -25,13 +25,16 @@ def make_persistent(file_path: Path) -> Path: as otherwise only one datafile can be persistent and will be returned for both cases. + Ensure that all open files are using explicit appropriate encoding to avoid + encoding errors from diffent OS systems. + Example Usage: >>> import json >>> template_datafile = Path("bot", "resources", "evergreen", "myfile.json") >>> path_to_persistent_file = make_persistent(template_datafile) >>> print(path_to_persistent_file) data/evergreen/myfile.json - >>> with path_to_persistent_file.open("w+") as f: + >>> with path_to_persistent_file.open("w+", encoding="utf8") as f: >>> data = json.load(f) """ # ensure the persistent data directory exists |