We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41abb9a commit 3dedf8fCopy full SHA for 3dedf8f
1 file changed
comiclib/frontend_boost.py
@@ -80,7 +80,7 @@
80
81
s = requests.session()
82
for name in dependencies:
83
- logger.info('downloading', name)
+ logger.info('downloading %s', name)
84
r = s.get(f"https://registry.npmjs.com/{name}/-/{name.rpartition('/')[-1]}-{dependencies[name]}.tgz", allow_redirects=True)
85
r.raise_for_status()
86
with tarfile.open(fileobj=io.BytesIO(r.content), mode='r:gz') as t:
0 commit comments