]> source.dussan.org Git - rspamd.git/commitdiff
Fix grammar 2605/head
authorAnton Yuzhaninov <citrin+git@citrin.ru>
Tue, 23 Oct 2018 03:31:10 +0000 (23:31 -0400)
committerAnton Yuzhaninov <citrin+git@citrin.ru>
Tue, 23 Oct 2018 03:31:10 +0000 (23:31 -0400)
test/tools/http_put.py

index dab9a21501c5045ae2d58d36ad788e49c65a7535..de2dad3d709f408cdceccc22033d69248baed33b 100755 (executable)
@@ -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: