Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb3a2eb

Browse files
authored
Merge pull request #7881 from QuLogic/freetype-version
[MRG+1] Fix inverted expected/found FreeType version warning.
2 parents 1c752f7 + ec92ff5 commit fb3a2eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1565,8 +1565,8 @@ def _init_tests():
15651565
"Expected freetype version {0}. "
15661566
"Found freetype version {1}. "
15671567
"Freetype build type is {2}local".format(
1568-
ft2font.__freetype_version__,
15691568
LOCAL_FREETYPE_VERSION,
1569+
ft2font.__freetype_version__,
15701570
"" if ft2font.__freetype_build_type__ == 'local' else "not "
15711571
)
15721572
)

0 commit comments

Comments
 (0)