From da1e0852a16edef80bb69e87ddbc0982e0f0bd55 Mon Sep 17 00:00:00 2001 From: bashrc Date: Wed, 14 Jan 2026 19:53:03 +0000 Subject: [PATCH] Count edits --- posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts.py b/posts.py index 7ed781d2d..af9dcde90 100644 --- a/posts.py +++ b/posts.py @@ -5691,9 +5691,9 @@ def archive_posts_for_person(http_prefix: str, nickname: str, domain: str, post_filename = post_filename.name if not post_filename.endswith('.edits'): continue + edit_files_ctr += 1 full_filename = os.path.join(box_dir, post_filename) if os.path.isfile(full_filename): - edit_files_ctr += 1 content = '' try: with open(full_filename, 'r', encoding='utf-8') as fp_content: