diff --git a/weboob/tools/application/base.py b/weboob/tools/application/base.py index a1b26658df9196dc64e3f2459073454d3a196791..28b5ce113b516ebdb0f6d6ef8a0c6d3612be88c5 100644 --- a/weboob/tools/application/base.py +++ b/weboob/tools/application/base.py @@ -146,13 +146,13 @@ def __init__(self, option_parser=None): self._parser.add_option_group(app_options) self._parser.add_option('-b', '--backends', help='what backend(s) to enable (comma separated)') self._parser.add_option('-e', '--exclude-backends', help='what backend(s) to exclude (comma separated)') + self._parser.add_option('-I', '--insecure', action='store_true', help='do not validate SSL') logging_options = OptionGroup(self._parser, 'Logging Options') logging_options.add_option('-d', '--debug', action='store_true', help='display debug messages') logging_options.add_option('-q', '--quiet', action='store_true', help='display only error messages') logging_options.add_option('-v', '--verbose', action='store_true', help='display info messages') logging_options.add_option('--logging-file', action='store', type='string', dest='logging_file', help='file to save logs') logging_options.add_option('-a', '--save-responses', action='store_true', help='save every response') - logging_options.add_option('-I', '--insecure', action='store_true', help='do not validate SSL') self._parser.add_option_group(logging_options) self._parser.add_option('--shell-completion', action='store_true', help=optparse.SUPPRESS_HELP)