Skip to content

Commit

Permalink
Fix global exception handler
Browse files Browse the repository at this point in the history
  • Loading branch information
grst committed Aug 9, 2023
1 parent 4fcf466 commit 23a9eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/src/scverse_template_scripts/cruft_prs.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def main(tag_name: str) -> None:
make_pr(con, release, repo_url)
except Exception as e:
failed += 1
log.exception(f"Error updating {repo_url}.", e)
log.exception(f"Error updating {repo_url}: %s", e)

sys.exit(failed > 0)

Expand Down

0 comments on commit 23a9eaa

Please sign in to comment.