diff options
Diffstat (limited to 'python/servo/util.py')
-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: |