(target, files)
| 37 | |
| 38 | @public |
| 39 | def write_catalog(target, files): |
| 40 | with target.open("w", encoding="utf-8") as cat: |
| 41 | cat.write(CATALOG_TEMPLATE.format(target=target)) |
| 42 | cat.writelines("<HASH>{}={}\n".format(n, f) for n, f in files if can_sign(f)) |
no test coverage detected
searching dependent graphs…