diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-10-18 22:45:12 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-10-18 22:45:12 +0200 |
commit | 1f4c0c63de99ba868816351844b553f805bc1391 (patch) | |
tree | 59913f6307131dbec93885fbc9fc5d82449fe7ff /python/servo | |
parent | efdaa0d00ac286b4dc5ad8d31e68c98a079b8917 (diff) | |
download | servo-1f4c0c63de99ba868816351844b553f805bc1391.tar.gz servo-1f4c0c63de99ba868816351844b553f805bc1391.zip |
Bootstrap: print URLs being downloaded.
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/util.py b/python/servo/util.py index 0a74f9fe7f1..30de9fba847 100644 --- a/python/servo/util.py +++ b/python/servo/util.py @@ -64,9 +64,9 @@ def host_triple(): def download(desc, src, writer, start_byte=0): if start_byte: - print("Resuming download of {}...".format(desc)) + print("Resuming download of {} ...".format(src)) else: - print("Downloading {}...".format(desc)) + print("Downloading {} ...".format(src)) dumb = (os.environ.get("TERM") == "dumb") or (not sys.stdout.isatty()) try: |