8000 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
peppified long statement
  • Loading branch information
Herbert Kruitbosch committed Jul 19, 2016
commit 1f3dc7a7b4ca1e34cea6d13b19f6412a9c5305c1
8 changes: 7 additions & 1 deletion lib/matplotlib/testing/decorators.py 871F
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,13 @@ def test(self):
shutil.copyfile(orig_expected_fname, expected_fname)
else:
will_fail = True
fail_msg = 'Do not have baseline image {0} because this file does not exist: {1}'.format(expected_fname, orig_expected_fname)
fail_msg = (
"Do not have baseline image {0} because this "
"file does not exist: {1}".format(
expected_fname,
orig_expected_fname
)
)

@knownfailureif(
will_fail, fail_msg,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0