@@ -106,8 +106,8 @@ class _object:
106106
107107VersionFitz = "1.14.0"
108108VersionBind = "1.14.6"
109- VersionDate = "2019-01-14 06:46:06 "
110- version = (VersionBind , VersionFitz , "20190114064606 " )
109+ VersionDate = "2019-01-16 04:32:29 "
110+ version = (VersionBind , VersionFitz , "20190116043229 " )
111111
112112
113113class Matrix ():
@@ -234,7 +234,7 @@ def preRotate(self, theta):
234234
235235 def concat (self , one , two ):
236236 """Multiply two matrices and replace current one."""
237- if not len (one ) == len (Two ) == 6 :
237+ if not len (one ) == len (two ) == 6 :
238238 raise ValueError ("bad sequ. length" )
239239 self .a , self .b , self .c , self .d , self .e , self .f = TOOLS ._concat_matrix (one , two )
240240 return self
@@ -1502,7 +1502,7 @@ def getTJstr(text, glyphs, simple, ordering):
15021502 if glyphs is None : # simple and not Symbol / ZapfDingbats
15031503 otxt = "" .join ([hex (ord (c ))[2 :].rjust (2 , "0" ) if ord (c )< 256 else "3f" for c in text ])
15041504 else : # Symbol or ZapfDingbats
1505- otxt = "" .join ([hex (glyphs [ord (c )][0 ])[2 :].rjust (2 , "0" ) for c in text ])
1505+ otxt = "" .join ([hex (glyphs [ord (c )][0 ])[2 :].rjust (2 , "0" ) if ord ( c ) < 256 else "20" for c in text ])
15061506 return "[<" + otxt + ">]"
15071507
15081508 if ordering < 0 : # not a CJK font: use the glyphs
0 commit comments