better logging totals counts

This commit is contained in:
Nick Sweeting 2019-03-22 21:38:24 -04:00
parent d06775923b
commit 096832210c
3 changed files with 98 additions and 89 deletions

View file

@ -91,13 +91,13 @@ def archive_link(link_dir, link):
if method_name not in link['history']:
link['history'][method_name] = []
if not should_run(link_dir, link):
if should_run(link_dir, link):
if skipped_entirely:
skipped_entirely = False
print()
else:
continue
if skipped_entirely:
skipped_entirely = False
print()
log_archive_method_started(method_name)
result = method_function(link_dir, link)
log_archive_method_finished(result)