From ba89f18bc110e1993625e61a0334d680a5a44f04 Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Thu, 5 Oct 2017 10:39:18 -0600 Subject: [PATCH] execute_only flag is now evaluated from the config file --- bob/bio/base/tools/command_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/base/tools/command_line.py b/bob/bio/base/tools/command_line.py index 31ce32b8..da731057 100644 --- a/bob/bio/base/tools/command_line.py +++ b/bob/bio/base/tools/command_line.py @@ -298,7 +298,7 @@ def parse_config_file(parsers, args, args_dictionary, keywords, skips): skip_keywords = tuple(['skip_' + k.replace('-', '_') for k in skips]) - for keyword in keywords + skip_keywords: + for keyword in keywords + skip_keywords + ('execute_only',): take_from_config_or_command_line(args, config, keyword, parser.get_default(keyword), required=False, is_resource=False) -- GitLab