We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870b84d commit 1704d44Copy full SHA for 1704d44
hererocks.py
@@ -527,11 +527,11 @@ def fetch(self):
527
archive_name = os.path.join(opts.downloads, self.get_file_name())
528
529
if opts.downloads and os.path.exists(archive_name):
530
- print("Fetching {} (cached)".format(self.title))
+ print("Fetching {}{} (cached)".format(self.title, self.version_suffix))
531
else:
532
for base_url in self.downloads:
533
url = self.get_download_url(base_url)
534
- print("Fetching {} from {}".format(self.title, url))
+ print("Fetching {}{} from {}".format(self.title, self.version_suffix, url))
535
536
try:
537
download(url, archive_name)
0 commit comments