aboutsummaryrefslogtreecommitdiffstats
path: root/modules/styles.py
diff options
context:
space:
mode:
authorMalumaDev <piano.lu92@gmail.com>2022-10-18 15:27:30 +0000
committerGitHub <noreply@github.com>2022-10-18 15:27:30 +0000
commitc2765c9bcd264f5a8922348cd03521cb2ff306b3 (patch)
tree475fb1048477fac8f0b9afc741b6a8eefeb339d7 /modules/styles.py
parent1997ccff13fc75af223f571e8c927c3d77273dd9 (diff)
parentc1093b8051606f0ac90506b7114c4b55d0447c70 (diff)
downloadstable-diffusion-webui-gfx803-c2765c9bcd264f5a8922348cd03521cb2ff306b3.tar.gz
stable-diffusion-webui-gfx803-c2765c9bcd264f5a8922348cd03521cb2ff306b3.tar.bz2
stable-diffusion-webui-gfx803-c2765c9bcd264f5a8922348cd03521cb2ff306b3.zip
Merge branch 'master' into test_resolve_conflicts
Diffstat (limited to 'modules/styles.py')
-rw-r--r--modules/styles.py4
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)