Mercurial > hg > cc > cirrus_work
changeset 369:710aca6b07e4 plus
fix file type coding bug
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Fri, 10 Apr 2026 16:02:09 +0100 |
| parents | 7071d450acde |
| children | c5b4f3e9f909 |
| files | lib/python/cc/lmh/shrink_key.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lib/python/cc/lmh/shrink_key.py Fri Apr 10 16:01:33 2026 +0100 +++ b/lib/python/cc/lmh/shrink_key.py Fri Apr 10 16:02:09 2026 +0100 @@ -23,8 +23,8 @@ SD: int = -1 WARC: int = 0 -ROBOTSTXT: int = 1 -CRAWLDIAGNOSTICS: int = 2 +CRAWLDIAGNOSTICS: int = 1 +ROBOTSTXT: int = 2 SUBDIR_CODES={b'w':WARC,b'c':CRAWLDIAGNOSTICS,b'r':ROBOTSTXT} def set_sd_from_string(subdir: str):
