Only report non-zero checks

main
Bob Mottram 2024-06-09 18:44:22 +01:00
parent 03bac188d8
commit 99634b39dc
1 changed files with 3 additions and 2 deletions

View File

@ -5021,8 +5021,9 @@ def _novel_fields_for_person(nickname: str, domain: str,
print(fieldname + ' ' + full_filename) print(fieldname + ' ' + full_filename)
posts_ctr += 1 posts_ctr += 1
print('Checked ' + str(posts_ctr) + ' ' + boxname + if posts_ctr > 0:
' posts for ' + nickname + '@' + domain) print('Checked ' + str(posts_ctr) + ' ' + boxname +
' posts for ' + nickname + '@' + domain)
def novel_fields(base_dir: str) -> None: def novel_fields(base_dir: str) -> None: