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
- Call kpsewhich in text mode (with the correct encoding).
- Suppress empty stdout/stderr from logged outputs.
Together this changes the entries logged by dviread from
```
DEBUG:matplotlib.dviread:kpsewhich cmss10.tfm
DEBUG:matplotlib.dviread:stdout:
b'/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/cm/cmss10.tfm\n'
DEBUG:matplotlib.dviread:stderr:
b''
```
to
```
DEBUG:matplotlib.dviread:kpsewhich cmss10.tfm
DEBUG:matplotlib.dviread:stdout:
/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/cm/cmss10.tfm
```
- Fix logged info about loading of tex fonts (it's the font that
matters, not the font family).
0 commit comments