From 83782b827b9c9f04e2f2fe3d2a033c4f90cc5617 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 21 May 2012 03:49:58 +0200 Subject: [PATCH] Update help --- 4c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/4c b/4c index da315fa..7e8e745 100755 --- a/4c +++ b/4c @@ -5,12 +5,12 @@ import re, urllib, urllib2, argparse, os -parser = argparse.ArgumentParser(description='Downloads all full-size images in an arbitrary 4chan thread.') +parser = argparse.ArgumentParser(description='Downloads all full-size images one or more arbitrary 4chan threads.') parser.add_argument('urllist', metavar='url', type=str, nargs='+', - help='the URL of the thread') + help='the URLs of the threads') parser.add_argument('-n', '--newdir', dest='newdir', action='store_true', - help='create a new directory for this thread in the current directory') + help='create a new directory for each thread in the current directory') parser.add_argument('-f', '--force', dest='force_redownload', action='store_true', help='force redownloading every image, overwriting it if it already exists')