diff options
author | S <pathway27@gmail.com> | 2016-08-15 01:52:52 +0000 |
---|---|---|
committer | S <pathway27@gmail.com> | 2016-08-15 04:36:41 +0000 |
commit | c3d118a45e75ec8221b0c102b528ddd93656241d (patch) | |
tree | fc14193cad3c803ecd09d111c9e952a30122d610 /python | |
parent | 27472ffa5950efb8fd895460b13f83f5ce712f10 (diff) | |
download | servo-c3d118a45e75ec8221b0c102b528ddd93656241d.tar.gz servo-c3d118a45e75ec8221b0c102b528ddd93656241d.zip |
Fix error-prone message while bootstrapping
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/bootstrap_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 13db36079ae..a3b997c2e69 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -70,7 +70,7 @@ def download(desc, src, writer, start_byte=0): "Please see https://github.com/servo/servo/#prerequisites") sys.exit(1) except urllib2.URLError, e: - print("Error downloading Rust compiler: " + str(e.reason) + ". The failing URL was: " + src) + print("Error downloading Rust compiler: %s. The failing URL was: %s" % (e.reason, src)) sys.exit(1) except KeyboardInterrupt: writer.flush() |