aboutsummaryrefslogtreecommitdiff
path: root/Snippets/checksum.py
diff options
context:
space:
mode:
Diffstat (limited to 'Snippets/checksum.py')
-rw-r--r--Snippets/checksum.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Snippets/checksum.py b/Snippets/checksum.py
index 53a53183..b965a357 100644
--- a/Snippets/checksum.py
+++ b/Snippets/checksum.py
@@ -29,9 +29,7 @@ def write_checksum(filepaths, stdout_write=False, use_ttx=False, include_tables=
temp_ttx_path = path + ".ttx"
tt = TTFont(path)
- # important to keep the newlinestr value defined here as hash values will change across platforms
- # if platform specific newline values are assumed
- tt.saveXML(temp_ttx_path, newlinestr="\n", skipTables=exclude_tables, tables=include_tables)
+ tt.saveXML(temp_ttx_path, skipTables=exclude_tables, tables=include_tables)
checksum_path = temp_ttx_path
else:
if include_tables is not None: