From 647d82c165eb528209d261d73648be459be93f01 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Thu, 7 Sep 2023 17:28:33 +0200 Subject: [PATCH] update_checkout.py: fix inconsistent options help capitalization `--clone` and `--clone-with-ssh` help strings were using capitalization inconsistent with other options. --- utils/update_checkout/update_checkout/update_checkout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/update_checkout/update_checkout/update_checkout.py b/utils/update_checkout/update_checkout/update_checkout.py index bf591cffb6775..00143f702895c 100755 --- a/utils/update_checkout/update_checkout/update_checkout.py +++ b/utils/update_checkout/update_checkout/update_checkout.py @@ -567,11 +567,11 @@ def main(): """) parser.add_argument( "--clone", - help="Obtain Sources for Swift and Related Projects", + help="obtain sources for Swift and related projects", action="store_true") parser.add_argument( "--clone-with-ssh", - help="Obtain Sources for Swift and Related Projects via SSH", + help="Obtain sources for Swift and related projects via SSH", action="store_true") parser.add_argument( "--skip-history",