From 08643f8232d5bf550da7c3f47ba986ceca4f07d0 Mon Sep 17 00:00:00 2001 From: AMZN-Phil Date: Sun, 17 Oct 2021 15:58:41 -0700 Subject: [PATCH] Use a more generic project name in download.py dest-path help Signed-off-by: AMZN-Phil --- scripts/o3de/o3de/download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/o3de/o3de/download.py b/scripts/o3de/o3de/download.py index f8c6cb2e93..f8868dd460 100644 --- a/scripts/o3de/o3de/download.py +++ b/scripts/o3de/o3de/download.py @@ -218,8 +218,8 @@ def add_parser_args(parser): parser.add_argument('-dp', '--dest-path', type=str, required=False, default=None, help='Optional destination folder to download into.' - ' i.e. download --project-name "AtomSamplerViewer" --dest-path "C:/projects"' - ' will result in C:/projects/AtomSampleViewer' + ' i.e. download --project-name "CustomProject" --dest-path "C:/projects"' + ' will result in C:/projects/CustomProject' ' If blank will download to default object type folder') parser.add_argument('-sar', '--skip-auto-register', action='store_true', required=False, default=False,