Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e0387 commit 582084bCopy full SHA for 582084b
1 file changed
lib/matplotlib/textpath.py
@@ -50,7 +50,7 @@ def _get_char_id(self, font, ccode):
50
Return a unique id for the given font and character-code set.
51
"""
52
ps_name = font.get_sfnt()[(1,0,0,6)]
53
- char_id = urllib.quote('%s-%d' % (ps_name, ccode))
+ char_id = urllib.quote('%s-%x' % (ps_name, ccode))
54
return char_id
55
56
def _get_char_id_ps(self, font, ccode):
0 commit comments