We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceaf353 commit 8cc0031Copy full SHA for 8cc0031
scripts/raise_github_issues.py
@@ -75,4 +75,7 @@ def raise_issue(ghtoken, ghrepo, title, desc):
75
except Exception as e:
76
desc = f'{group}-{subgroup}-{subsubgroup} [{cm}]\nURL lookup for {url} returned:\n```\n{e}\n```\n'
77
print(f' * {e}')
78
- raise_issue(ghtoken, ghrepo, f'Remove {cm}', desc)
+ try:
79
+ raise_issue(ghtoken, ghrepo, f'Remove {cm}', desc)
80
+ except Exception as e:
81
+ print(f'unable to raise github issue: {e}')
0 commit comments