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 54dfec9 commit bff9abcCopy full SHA for bff9abc
.github/workflows/update_index.py
@@ -21,7 +21,13 @@ def main():
21
for page in paginator.paginate(Bucket=bucket, Delimiter='/', Prefix=prefix):
22
for content in page.get('Contents', []):
23
key = content['Key']
24
- print(f"<li><a href='{key}'>{key}</a></li>")
+ #
25
+ # NB. use double quotes in href because that's that
26
+ # wheelhouse_uploader expects.
27
28
+ # https://github.com/ogrisel/wheelhouse-uploader/blob/eb32a7bb410769bb4212a9aa7fb3bfa3cef1aaec/wheelhouse_uploader/fetch.py#L15
29
30
+ print(f"""<li><a href="{key}">{key}</a></li>""")
31
print("</ul></body></html>")
32
33
0 commit comments