From 4208683c3d7af222e7b2f1198e782b895b24029a Mon Sep 17 00:00:00 2001 From: Rasmus Andersson Date: Sat, 5 Jan 2019 11:18:45 -0800 Subject: [PATCH] fix 2SP -> TAB indentation --- Lib/fontTools/misc/psCharStrings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/fontTools/misc/psCharStrings.py b/Lib/fontTools/misc/psCharStrings.py index 23f4670dd..68810744a 100644 --- a/Lib/fontTools/misc/psCharStrings.py +++ b/Lib/fontTools/misc/psCharStrings.py @@ -231,7 +231,7 @@ def encodeFloat(f): if f == 0.0: # 0.0 == +0.0 == -0.0 return realZeroBytes # Note: 14 decimal digits seems to be the limitation for CFF real numbers - # in macOS. However, we use 8 here to match the implementation of AFDKO. + # in macOS. However, we use 8 here to match the implementation of AFDKO. s = "%.8G" % f if s[:2] == "0.": s = s[1:]