From 6176991ac7ff0e6dcb4612b43da89abd350e3aa5 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 1 Dec 2018 12:25:48 +0100 Subject: cli: Fix --behavior --- crocoite/cli.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crocoite/cli.py b/crocoite/cli.py index 390cae6..f34424e 100644 --- a/crocoite/cli.py +++ b/crocoite/cli.py @@ -45,10 +45,11 @@ def single (): parser.add_argument('--browser', help='DevTools URL', metavar='URL') parser.add_argument('--timeout', default=1*60*60, type=int, help='Maximum time for archival', metavar='SEC') parser.add_argument('--idle-timeout', default=30, type=int, help='Maximum idle seconds (i.e. no requests)', dest='idleTimeout', metavar='SEC') - parser.add_argument('--behavior', help='Comma-separated list of enabled behavior scripts', + parser.add_argument('--behavior', help='Enable behavior script', dest='enabledBehaviorNames', default=list (behavior.availableMap.keys ()), - choices=list (behavior.availableMap.keys ())) + choices=list (behavior.availableMap.keys ()), + metavar='NAME', nargs='*') parser.add_argument('url', help='Website URL', metavar='URL') parser.add_argument('output', help='WARC filename', metavar='FILE') -- cgit v1.2.3