Make the code style consistent in the get_cli_arguments method

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2019-11-21 11:25:24 +01:00
parent 4833e4a566
commit 4a44a51ba5

View file

@ -478,10 +478,12 @@ class DistgitBugzillaSync:
'--env', dest='env', '--env', dest='env',
help='Run the script for a specific environment, overrides the one ' help='Run the script for a specific environment, overrides the one '
'set in the configuration file') 'set in the configuration file')
parser.add_argument('--add-config-file', metavar='CONFIG_FILE', parser.add_argument(
'--add-config-file', metavar='CONFIG_FILE',
dest='addl_config_files', action='append', dest='addl_config_files', action='append',
help="File(s) from which to read overriding configuration") help="File(s) from which to read overriding configuration")
parser.add_argument('--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE', parser.add_argument(
'--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE',
dest='addl_email_overrides_files', action='append', dest='addl_email_overrides_files', action='append',
help="File(s) from which to read additional email overrides") help="File(s) from which to read additional email overrides")
parser.add_argument( parser.add_argument(