mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Fix error-prone message while bootstrapping
This commit is contained in:
parent
27472ffa59
commit
c3d118a45e
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue