From 5c98bc061d5714ef2af4332c352e2968d64f7189 Mon Sep 17 00:00:00 2001 From: Viktor Stanchev Date: Sat, 14 Dec 2013 08:48:00 -0500 Subject: [PATCH] fix wrong default --- pirate-get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pirate-get.py b/pirate-get.py index 3c86295..bb8c75f 100755 --- a/pirate-get.py +++ b/pirate-get.py @@ -41,7 +41,7 @@ class MyHTMLParser(HTMLParser): def main(): parser = argparse.ArgumentParser(description='Finds and downloads torrents from the Pirate Bay') parser.add_argument('q', metavar='search_term', help="The term to search for") - parser.add_argument('-t',dest='transmission',action='store_true', help="call transmission-remote to start the download", default=True) + parser.add_argument('-t',dest='transmission',action='store_true', help="call transmission-remote to start the download", default=False) parser.add_argument('--local', dest='database', help="An xml file containing the Pirate Bay database") parser.add_argument('-p', dest='pages', help="The number of pages to fetch (doesn't work with --local)", default=1)