From a7282c82a5a35c523f74e892dbf9ed214e728f16 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 21 May 2012 03:47:27 +0200 Subject: [PATCH] Make output a bit more clear --- 4c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/4c b/4c index 1b9f674..da315fa 100755 --- a/4c +++ b/4c @@ -52,7 +52,7 @@ for url in options['urllist']: current = 1 total = len(urls) - print "Parsed thread. Total images: %d" % total + print " Parsed thread. Total images: %d" % total for downloadurl in urls: downloadurl = "http:%s" % downloadurl @@ -65,3 +65,5 @@ for url in options['urllist']: urllib.urlretrieve(downloadurl, path) print "Downloaded %s (%d/%d)." % (filename, current, total) current += 1 + + print "Done."