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

Skip to content

Commit 5ecc79b

Browse files
committed
Fix conversion error message
1 parent 6ada57f commit 5ecc79b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/testing/compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def convert(*args):
9191
stdout, stderr = pipe.communicate()
9292
errcode = pipe.wait()
9393
if not os.path.exists(newname) or errcode:
94-
msg = "Conversion command failed:\n%s\n" % ' '.join(cmd)
94+
msg = "Conversion command failed:\n%s\n" % ' '.join(cmdline)
9595
if stdout:
9696
msg += "Standard output:\n%s\n" % stdout
9797
if stderr:

0 commit comments

Comments
 (0)