Skip to content

Commit

Permalink
Fix CalledProcessError attribute access in tests (#12838)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtheturtle committed Aug 31, 2024
1 parent ce0d179 commit 678704f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_builders/test_build_texinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_texinfo(app):
except CalledProcessError as exc:
print(exc.stdout)
print(exc.stderr)
msg = f'makeinfo exited with return code {exc.retcode}'
msg = f'makeinfo exited with return code {exc.returncode}'
raise AssertionError(msg) from exc


Expand Down

0 comments on commit 678704f

Please sign in to comment.