1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

dont print when no links added

This commit is contained in:
Nick Sweeting 2018-04-17 21:23:26 -04:00
parent 595b632765
commit 31476fe21b

14
archive
View file

@ -62,13 +62,13 @@ def merge_links(archive_path=HTML_FOLDER, import_path=None):
archive_path,
**ANSI,
))
else:
print('[*] [{}] No new links added to {}/index.json{}'.format(
datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
archive_path,
' from {}'.format(import_path) if import_path else '',
**ANSI,
))
# else:
# print('[*] [{}] No new links added to {}/index.json{}'.format(
# datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
# archive_path,
# ' from {}'.format(import_path) if import_path else '',
# **ANSI,
# ))
return all_links