We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6cbbf commit a87cdffCopy full SHA for a87cdff
uc_python/collate.py
@@ -18,4 +18,5 @@
18
print(f"no slides in {slides_dir}, skipping")
19
continue
20
slides_dir.rename(site / repo.name)
21
- index.write_text(f'<a href="/{repo.name}">{repo.name}</a>\n')
+ with open(index, 'at') as f:
22
+ f.write(f'<a href="/{repo.name}">{repo.name}</a>\n')
0 commit comments