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:
parent
4833e4a566
commit
4a44a51ba5
1 changed files with 8 additions and 6 deletions
|
@ -478,12 +478,14 @@ 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(
|
||||||
dest='addl_config_files', action='append',
|
'--add-config-file', metavar='CONFIG_FILE',
|
||||||
help="File(s) from which to read overriding configuration")
|
dest='addl_config_files', action='append',
|
||||||
parser.add_argument('--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE',
|
help="File(s) from which to read overriding configuration")
|
||||||
dest='addl_email_overrides_files', action='append',
|
parser.add_argument(
|
||||||
help="File(s) from which to read additional email overrides")
|
'--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE',
|
||||||
|
dest='addl_email_overrides_files', action='append',
|
||||||
|
help="File(s) from which to read additional email overrides")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-p', '--project', dest='projects', nargs='+',
|
'-p', '--project', dest='projects', nargs='+',
|
||||||
help='Update one or more projects (provided as namespace/name), '
|
help='Update one or more projects (provided as namespace/name), '
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue