summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2022-01-28 11:22:24 +0200
committerAarni Koskela <akx@iki.fi>2022-04-08 13:38:18 +0300
commit9cd0ed93ad5e69432f1fda11285b04f09d3b8e94 (patch)
tree8ff272524c5ec085a133189aca42a688734b50b8 /scripts
parent98620495670fa0e046d2e2e57a7a75dc8643119c (diff)
downloadbabel-9cd0ed93ad5e69432f1fda11285b04f09d3b8e94.tar.gz
Show CLDR download URL
Fixes #811
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/download_import_cldr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download_import_cldr.py b/scripts/download_import_cldr.py
index c0ec5b7..5a6640f 100755
--- a/scripts/download_import_cldr.py
+++ b/scripts/download_import_cldr.py
@@ -79,7 +79,7 @@ def main():
show_progress = (False if os.environ.get("BABEL_CLDR_NO_DOWNLOAD_PROGRESS") else sys.stdout.isatty())
while not is_good_file(zip_path):
- log('Downloading \'%s\'', FILENAME)
+ log("Downloading '%s' from %s", FILENAME, URL)
if os.path.isfile(zip_path):
os.remove(zip_path)
urlretrieve(URL, zip_path, (reporthook if show_progress else None))