Skip to content

Commit 4fcf466

Browse files
committed
Fix global exception handler
1 parent 121bcbf commit 4fcf466

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/src/scverse_template_scripts/cruft_prs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def main(tag_name: str) -> None:
265265
make_pr(con, release, repo_url)
266266
except Exception as e:
267267
failed += 1
268-
log.error(f"Error updating {repo_url}.", e)
268+
log.exception(f"Error updating {repo_url}.", e)
269269

270270
sys.exit(failed > 0)
271271

0 commit comments

Comments
 (0)