From a4e3bd85ed0db0eb8f050a9d786b9ba6b8b5a42e Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Mon, 3 Oct 2016 09:23:52 -0600 Subject: [PATCH] Revert "Use the 'default' keyword on the argparse option" This reverts commit 927f30ef15cdb852f05282f270b98ba486e340cf. --- bob/bio/base/tools/command_line.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/bio/base/tools/command_line.py b/bob/bio/base/tools/command_line.py index 4b992f39..558a0a06 100644 --- a/bob/bio/base/tools/command_line.py +++ b/bob/bio/base/tools/command_line.py @@ -78,9 +78,9 @@ def command_line_parser(description=__doc__, exclude_resources_from=[]): dir_group = parser.add_argument_group('\nDirectories that can be changed according to your requirements') dir_group.add_argument('-T', '--temp-directory', metavar = 'DIR', - default = temp, help = 'The directory for temporary files') + help = 'The directory for temporary files; if --temp-directory is not specified, "%s" is used' % temp) dir_group.add_argument('-R', '--result-directory', metavar = 'DIR', - default = results, help = 'The directory for resulting score files') + help = 'The directory for resulting score files; if --result-directory is not specified, "%s" is used' % results) file_group = parser.add_argument_group('\nName (maybe including a path relative to the --temp-directory, if not specified otherwise) of files that will be generated. Note that not all files will be used by all algorithms') file_group.add_argument('--extractor-file', metavar = 'FILE', default = 'Extractor.hdf5', -- GitLab