This commit is contained in:
Ali Parlakci
2018-07-25 13:48:30 +03:00
parent 394b864d86
commit 35d54d1eb1

View File

@@ -374,16 +374,10 @@ def redditSearcher(posts,SINGLE_POST=False):
if not len(subList) == 0: if not len(subList) == 0:
print( print(
"\n\nTotal of {} submissions found!\n"\ f"\n\nTotal of {len(subList)} submissions found!\n"\
"{} GFYCATs, {} IMGURs, {} EROMEs, {} DIRECTs and {} SELF POSTS\n" f"{gfycatCount} GFYCATs, {imgurCount} IMGURs, " \
.format( f"{eromeCount} EROMEs, {directCount} DIRECTs " \
len(subList), f"and {selfCount} SELF POSTS"
gfycatCount,
imgurCount,
eromeCount,
directCount,
selfCount
)
) )
return subList return subList
else: else: