From 82a644850f35734120a2d605ca4026b3a7e5a9ca Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Fri, 21 Oct 2022 11:33:26 +0300 Subject: [PATCH 1/2] improve description of verify_ssl parameter --- conans/client/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conans/client/command.py b/conans/client/command.py index 9c1469ac868..2c5f8dca6b0 100644 --- a/conans/client/command.py +++ b/conans/client/command.py @@ -1575,7 +1575,7 @@ def remote(self, *args): parser_add.add_argument('remote', help='Name of the remote') parser_add.add_argument('url', help='URL of the remote') parser_add.add_argument('verify_ssl', nargs="?", default="True", - help='Verify SSL certificated. Default True') + help='Verify SSL certificate. Default is True') parser_add.add_argument("-i", "--insert", nargs="?", const=0, type=int, action=OnceArgument, help="insert remote at specific index") parser_add.add_argument("-f", "--force", default=False, action='store_true', @@ -1587,7 +1587,7 @@ def remote(self, *args): parser_upd.add_argument('url', help='URL') parser_upd.add_argument('verify_ssl', nargs="?", default="True", - help='Verify SSL certificated. Default True') + help='Verify SSL certificate. Default is True') parser_upd.add_argument("-i", "--insert", nargs="?", const=0, type=int, action=OnceArgument, help="Insert remote at specific index") parser_rename = subparsers.add_parser('rename', help='Update the remote name') From cb3b096af276db371e8907053b14337faaaeb4fe Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Fri, 21 Oct 2022 11:53:26 +0300 Subject: [PATCH 2/2] Update command.py --- conans/client/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conans/client/command.py b/conans/client/command.py index 2c5f8dca6b0..5b548b805ea 100644 --- a/conans/client/command.py +++ b/conans/client/command.py @@ -1575,7 +1575,7 @@ def remote(self, *args): parser_add.add_argument('remote', help='Name of the remote') parser_add.add_argument('url', help='URL of the remote') parser_add.add_argument('verify_ssl', nargs="?", default="True", - help='Verify SSL certificate. Default is True') + help='Verify SSL certificate. Defaulted to True') parser_add.add_argument("-i", "--insert", nargs="?", const=0, type=int, action=OnceArgument, help="insert remote at specific index") parser_add.add_argument("-f", "--force", default=False, action='store_true', @@ -1587,7 +1587,7 @@ def remote(self, *args): parser_upd.add_argument('url', help='URL') parser_upd.add_argument('verify_ssl', nargs="?", default="True", - help='Verify SSL certificate. Default is True') + help='Verify SSL certificate. Defaulted to True') parser_upd.add_argument("-i", "--insert", nargs="?", const=0, type=int, action=OnceArgument, help="Insert remote at specific index") parser_rename = subparsers.add_parser('rename', help='Update the remote name')