Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tools/create_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import os
import re
import subprocess # nosec
import traceback
from dataclasses import dataclass

import create_tarballs
Expand Down Expand Up @@ -152,6 +151,7 @@ def report_failure(self, version: str, exception: Exception) -> None:
if not self.config.issue:
return

print(f"Reporting failure to tracking issue #{self.config.issue}...")
instruction = f"❌ **Failure:** {exception}"
self.assign_to_user(
None,
Expand All @@ -167,7 +167,6 @@ def run(self) -> None:
except stage.UserAbort as e:
print(e.message)
except Exception as e:
traceback.print_exc()
self.report_failure(self.version, e)
raise e

Expand Down
Loading