Skip to content

Commit

Permalink
Improve codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
davfsa committed Aug 7, 2024
1 parent 9461962 commit 8a5b6fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mkdocs_towncrier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def _generate_changelog_draft(version_string: str) -> str:
msg = (
f"Command `{" ".join(command)}` exited unexpectedly\n"
f"Return code: {response.returncode}\n"
f"stdout:\n{textwrap.indent(stdout, " "*4)}\n"
f"stderr:\n{textwrap.indent(stderr, " "*4)}\n"
f"stdout:\n{textwrap.indent(stdout, " " * 4)}\n"
f"stderr:\n{textwrap.indent(stderr, " " * 4)}\n"
)
raise mkdocs.exceptions.BuildError(msg)

Expand Down

0 comments on commit 8a5b6fe

Please sign in to comment.