summaryrefslogtreecommitdiff
path: root/lib/lettering/font.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lettering/font.py')
-rw-r--r--lib/lettering/font.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lettering/font.py b/lib/lettering/font.py
index 104e4b29..24ca86bf 100644
--- a/lib/lettering/font.py
+++ b/lib/lettering/font.py
@@ -87,14 +87,14 @@ class Font(object):
def _load_metadata(self):
try:
- with open(os.path.join(self.path, "font.json"), encoding="utf-8") as metadata_file:
+ with open(os.path.join(self.path, "font.json"), encoding="utf-8-sig") as metadata_file:
self.metadata = json.load(metadata_file)
except IOError:
pass
def _load_license(self):
try:
- with open(os.path.join(self.path, "LICENSE"), encoding="utf-8") as license_file:
+ with open(os.path.join(self.path, "LICENSE"), encoding="utf-8-sig") as license_file:
self.license = license_file.read()
except IOError:
pass