mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
Bug 1362828 - mozboot: Fix clang package download message. r=froydnj
The Python print() function's does not take a format string, so the extraneous %s here inadvertently prints "Downloading clang package from %s https://..." instead of "Downloading clang package from https://...". MozReview-Commit-ID: 5Is5TK3X34e --HG-- extra : rebase_source : 02e625fbdaab536d1a787c33edd6dfda9c1039c6
This commit is contained in:
parent
077409e068
commit
44c4d43ecf
@ -289,7 +289,7 @@ class BaseBootstrapper(object):
|
||||
try:
|
||||
package_url = TOOLTOOL_API + package_sha512sum
|
||||
downloaded_filename = os.path.join(download_path, package_sha512sum)
|
||||
print('Downloading clang package from %s', package_url)
|
||||
print('Downloading clang package from', package_url)
|
||||
self.http_download_and_save(package_url, downloaded_filename,
|
||||
package_sha512sum, 'sha512')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user