diff options
| author | Ralf Jung <post@ralfj.de> | 2019-06-21 20:47:42 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-06-21 20:47:42 +0200 |
| commit | 02863a3554a1b0aea93871bbfb7a92738cd2fe89 (patch) | |
| tree | c10f881a5440d28782db8ef4910b393ca1157359 /src/tools | |
| parent | ecca52cac14c28af3584ea531e3f4e0a15dfca67 (diff) | |
| download | rust-02863a3554a1b0aea93871bbfb7a92738cd2fe89.tar.gz rust-02863a3554a1b0aea93871bbfb7a92738cd2fe89.zip | |
do as tidy says
Diffstat (limited to 'src/tools')
| -rwxr-xr-x | src/tools/publish_toolstate.py | 3 |
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: |
