aboutsummaryrefslogtreecommitdiffstats
path: root/test/tools
diff options
context:
space:
mode:
authorAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-22 23:31:10 -0400
committerAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-22 23:31:10 -0400
commit6ebb43d9bd5516a7c2ed71bbc312615453e5321e (patch)
treedc1dda8078e8ef1864e42429acfbb99a1d0367aa /test/tools
parentba26c2360d2af1941ecef65eb74b193e25150854 (diff)
downloadrspamd-6ebb43d9bd5516a7c2ed71bbc312615453e5321e.tar.gz
rspamd-6ebb43d9bd5516a7c2ed71bbc312615453e5321e.zip
Fix grammar
Diffstat (limited to 'test/tools')
-rwxr-xr-xtest/tools/http_put.py4
1 files 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: