| Index: cms/translations/xtm/cli.py |
| diff --git a/cms/translations/xtm/cli.py b/cms/translations/xtm/cli.py |
| index 693969c504912a5f817fb597d576a28c83bf84a6..9bade4323d56be2a85360ea696297c07c45b50ca 100644 |
| --- a/cms/translations/xtm/cli.py |
| +++ b/cms/translations/xtm/cli.py |
| @@ -104,7 +104,7 @@ def parse_args(): |
| help=const.ArgumentsHelp.ProjectCreate.REF_ID, |
| ) |
| project_create_parser.add_argument( |
| - '--workflow-id', required=True, type=int, |
| + '--workflow-id', type=int, |
| help=const.ArgumentsHelp.ProjectCreate.WORKFLOW_ID, |
| ) |
| project_create_parser.add_argument( |
| @@ -115,6 +115,10 @@ def parse_args(): |
| '--save-id', action='store_true', default=False, |
| help=const.ArgumentsHelp.ProjectCreate.SAVE_ID, |
| ) |
| + project_create_parser.add_argument( |
| + '--workflow-name', |
| + help=const.ArgumentsHelp.ProjectCreate.WORKFLOW_NAME, |
| + ) |
| # Subparser for uploading files to project |
| project_upload_parser = subparsers.add_parser( |