From adccd8f3ba03ad124d58643d78dab287a4123a6f Mon Sep 17 00:00:00 2001 From: Ali Parlakci Date: Wed, 15 Aug 2018 21:46:27 +0300 Subject: [PATCH] Prints the file that already exists --- script.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script.py b/script.py index 1585b09..4f887a2 100644 --- a/script.py +++ b/script.py @@ -569,7 +569,8 @@ def download(submissions): print(f" – {submissions[i]['postType'].upper()}",end="",noPrint=True) if isPostExists(submissions[i]): - print("\nIt already exists") + print(f"\n{nameCorrector(submissions[i]['postTitle'])}") + print("It already exists") duplicates += 1 downloadedCount -= 1 continue