We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b2b1c commit fb2f841Copy full SHA for fb2f841
src/tools/publish_toolstate.py
@@ -167,9 +167,9 @@ def update_latest(
167
except IOError as e:
168
# network errors will simply end up not creating an issue, but that's better
169
# than failing the entire build job
170
- print("I/O error: {0}".format(e))
+ print("I/O error when creating issue for status regression: {0}".format(e))
171
except:
172
- print("Unexpected error: {0}".format(sys.exc_info()[0]))
+ print("Unexpected error when creating issue for status regression: {0}".format(sys.exc_info()[0]))
173
raise
174
175
if changed:
0 commit comments