You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using matplotlib to list installed files in a python3 script:
font_manager.get_fontconfig_fonts(),
the list I get has only one element, that contains all fonts names concatenated.
I've tried replacing
out = subprocess.check_output([str('fc-list'), '--format=%{file}'])
on line 284 by:
out = subprocess.check_output([str('fc-list'), '--format=%{file}\\n'])
and that works.
I can confirm this happens on both py2 and py3
do you think that's the right approach or is there a better way to fix this issue? thanks!
The text was updated successfully, but these errors were encountered:
as reported on Debian as http://bugs.debian.org/852060:
I can confirm this happens on both py2 and py3
do you think that's the right approach or is there a better way to fix this issue? thanks!
The text was updated successfully, but these errors were encountered: