diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2022-10-17 14:18:21 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-18 12:18:51 +0000 |
commit | 2f448d97a9427f9a7bad19cf608561b2878ab2da (patch) | |
tree | 42e06c623cec9afa9dc4b905f63afc80c2493119 | |
parent | 433a7525c1f5eb5963340e0cc45d31038ede3f7e (diff) | |
download | stable-diffusion-webui-gfx803-2f448d97a9427f9a7bad19cf608561b2878ab2da.tar.gz stable-diffusion-webui-gfx803-2f448d97a9427f9a7bad19cf608561b2878ab2da.tar.bz2 stable-diffusion-webui-gfx803-2f448d97a9427f9a7bad19cf608561b2878ab2da.zip |
styles.csv encoding utf8 to utf-8-sig
utf-8-bom for better compatibility for some programs
-rw-r--r-- | modules/styles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/styles.py b/modules/styles.py index d44dfc1a..3bf5c5b6 100644 --- a/modules/styles.py +++ b/modules/styles.py @@ -45,7 +45,7 @@ class StyleDatabase: if not os.path.exists(path):
return
- with open(path, "r", encoding="utf8", newline='') as file:
+ with open(path, "r", encoding="utf-8-sig", newline='') as file:
reader = csv.DictReader(file)
for row in reader:
# Support loading old CSV format with "name, text"-columns
@@ -79,7 +79,7 @@ class StyleDatabase: def save_styles(self, path: str) -> None:
# Write to temporary file first, so we don't nuke the file if something goes wrong
fd, temp_path = tempfile.mkstemp(".csv")
- with os.fdopen(fd, "w", encoding="utf8", newline='') as file:
+ with os.fdopen(fd, "w", encoding="utf-8-sig", newline='') as file:
# _fields is actually part of the public API: typing.NamedTuple is a replacement for collections.NamedTuple,
# and collections.NamedTuple has explicit documentation for accessing _fields. Same goes for _asdict()
writer = csv.DictWriter(file, fieldnames=PromptStyle._fields)
|