From: Christopher Larson <[email protected]> This aligns with our existing 'optional arguments' to 'options' change, and seems more intuitive for users.
Signed-off-by: Christopher Larson <[email protected]> --- scripts/lib/argparse_oe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/lib/argparse_oe.py b/scripts/lib/argparse_oe.py index 2185a66..bf6eb17 100644 --- a/scripts/lib/argparse_oe.py +++ b/scripts/lib/argparse_oe.py @@ -14,6 +14,7 @@ class ArgumentParser(argparse.ArgumentParser): kwargs.setdefault('formatter_class', OeHelpFormatter) self._subparser_groups = OrderedDict() super(ArgumentParser, self).__init__(*args, **kwargs) + self._positionals.title = 'arguments' self._optionals.title = 'options' def error(self, message): -- 2.8.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
