From: Aarni Koskela Date: Fri, 28 Jan 2022 09:22:24 +0000 (+0200) Subject: Show CLDR download URL X-Git-Tag: v2.10.0~8^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cd0ed93ad5e69432f1fda11285b04f09d3b8e94;p=thirdparty%2Fbabel.git Show CLDR download URL Fixes #811 --- diff --git a/scripts/download_import_cldr.py b/scripts/download_import_cldr.py index c0ec5b7c..5a6640f5 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))