From 2d052e443e4e99c5fe01d8176aafb89fee140ab9 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Fri, 26 Feb 2016 00:30:05 -0800 Subject: [PATCH] --skip option needs to have an empty list default --- tldp/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/config.py b/tldp/config.py index 954c7f4..3cfd65c 100644 --- a/tldp/config.py +++ b/tldp/config.py @@ -35,7 +35,7 @@ def collectconfiguration(tag, argv): default=logging.ERROR, type=arg_isloglevel, help='set the loglevel') ap.add_argument('--skip', - default=None, action='append', type=str, + default=[], action='append', type=str, help='skip this stem during processing') ap.add_argument('--sourcedir', '--source-dir', '--source-directory', '-s',