diff options
-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() |