diff options
author | mjfernez <mjf@mjfer.net> | 2024-03-24 18:38:04 -0400 |
---|---|---|
committer | mjfernez <mjf@mjfer.net> | 2024-03-24 18:38:04 -0400 |
commit | 60d2e9d3e0c744bd331dec4a39e21e195a43738b (patch) | |
tree | 9016479fcf2d198da4db037231a6da27ef6f5dbf /update_latest.py | |
parent | 297cb27a1cb51b70ec21657c4e86381c1368a1fb (diff) | |
download | site-files-60d2e9d3e0c744bd331dec4a39e21e195a43738b.tar.gz |
ADD CATS
Diffstat (limited to 'update_latest.py')
-rw-r--r-- | update_latest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_latest.py b/update_latest.py index 3ee8bfc..658ccaf 100644 --- a/update_latest.py +++ b/update_latest.py @@ -25,7 +25,7 @@ dirs = [x for x in os.listdir() for top in dirs: for root,_,files in os.walk(top): for f in files: - if f.endswith(".html") or f.endswith(".txt"): + if f.endswith(".html") or f.endswith(".txt") or f.endswith(".html!"): path = os.path.join(root, f) t = file_last_modified(path) if t: |