about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-06-21 20:47:42 +0200
committerRalf Jung <post@ralfj.de>2019-06-21 20:47:42 +0200
commit02863a3554a1b0aea93871bbfb7a92738cd2fe89 (patch)
treec10f881a5440d28782db8ef4910b393ca1157359 /src/tools
parentecca52cac14c28af3584ea531e3f4e0a15dfca67 (diff)
downloadrust-02863a3554a1b0aea93871bbfb7a92738cd2fe89.tar.gz
rust-02863a3554a1b0aea93871bbfb7a92738cd2fe89.zip
do as tidy says
Diffstat (limited to 'src/tools')
-rwxr-xr-xsrc/tools/publish_toolstate.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/publish_toolstate.py b/src/tools/publish_toolstate.py
index ae4c12a94ab..d5dff1dcae0 100755
--- a/src/tools/publish_toolstate.py
+++ b/src/tools/publish_toolstate.py
@@ -168,7 +168,8 @@ def update_latest(
                 except urllib2.HTTPError as e:
                     # network errors will simply end up not creating an issue, but that's better
                     # than failing the entire build job
-                    print("HTTPError when creating issue for status regression: {0}\n{1}".format(e, e.read()))
+                    print("HTTPError when creating issue for status regression: {0}\n{1}"
+                          .format(e, e.read()))
                 except IOError as e:
                     print("I/O error when creating issue for status regression: {0}".format(e))
                 except: