From 6ebb43d9bd5516a7c2ed71bbc312615453e5321e Mon Sep 17 00:00:00 2001 From: Anton Yuzhaninov Date: Mon, 22 Oct 2018 23:31:10 -0400 Subject: [PATCH] Fix grammar --- test/tools/http_put.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tools/http_put.py b/test/tools/http_put.py index dab9a2150..de2dad3d7 100755 --- a/test/tools/http_put.py +++ b/test/tools/http_put.py @@ -19,11 +19,11 @@ def main(): parser.add_argument( "file", type=argparse.FileType('rb'), nargs='+', help="File to upload") parser.add_argument( - "dir_url", help="Remote URL (path to a directory, must ends with /)") + "dir_url", help="Remote URL (path to a directory, must include a trailing /)") args = parser.parse_args() if not args.dir_url.endswith('/'): - parser.error("URL must ends with /") + parser.error("URL must end with /") http_auth = os.getenv('HTTP_PUT_AUTH') if http_auth: -- 2.39.5