10000 check freetype version also specifies what is wrong by prhbrt · Pull Request #6403 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

check freetype version also specifies what is wrong #6403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
fixed important !=/== typo
  • Loading branch information
Herbert Kruitbosch committed Jul 19, 2016
commit 2c5b61eadd25769398d321b1e82d747bba2b3622
2 changes: 1 addition & 1 deletion lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def _init_tests():
"Freetype build type is {2}local".format(
ft2font.__freetype_version__,
LOCAL_FREETYPE_VERSION,
"" if ft2font.__freetype_build_type__ != 'local' else "not "
"" if ft2font.__freetype_build_type__ == 'local' else "not "
)
)

Expand Down
0