Skip to content

Commit

Permalink
Merge pull request #1141 from pwuertz/pgf-fixes
Browse files Browse the repository at this point in the history
backend_pgf: fix parentheses typo
  • Loading branch information
mdboom committed Aug 23, 2012
2 parents b0393e9 + 623bc8f commit 3419eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_pgf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
system_fonts = []
for f in font_manager.findSystemFonts():
try:
system_fonts.append(FT2Font(str(f).family_name))
system_fonts.append(FT2Font(str(f)).family_name)
except RuntimeError:
pass # some fonts on osx are known to fail, print?
except:
Expand Down

0 comments on commit 3419eb8

Please sign in to comment.