1
0
mirror of https://github.com/gryf/boxpy.git synced 2025-12-18 21:10:17 +01:00

Added information regarding url for the dl image

This commit is contained in:
2023-02-12 11:45:50 +01:00
parent 4db0b422b8
commit f0282874f8

3
box.py
View File

@@ -978,7 +978,8 @@ class Image:
return True
fname = os.path.join(CACHE_DIR, self._img_fname)
LOG.header('Downloading image %s', self._img_fname)
LOG.header('Downloading image %s from %s', self._img_fname,
self._img_url)
Run(['wget', '-q', self._img_url, '-O', fname])
if not self._checksum():