fix 2SP -> TAB indentation

This commit is contained in:
Rasmus Andersson 2019-01-05 11:18:45 -08:00
parent 4c72b8f781
commit 4208683c3d

View File

@ -231,7 +231,7 @@ def encodeFloat(f):
if f == 0.0: # 0.0 == +0.0 == -0.0 if f == 0.0: # 0.0 == +0.0 == -0.0
return realZeroBytes return realZeroBytes
# Note: 14 decimal digits seems to be the limitation for CFF real numbers # 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 s = "%.8G" % f
if s[:2] == "0.": if s[:2] == "0.":
s = s[1:] s = s[1:]