diff options
author | fyquah <fyquah@protonmail.com> | 2021-03-01 15:24:19 +0000 |
---|---|---|
committer | fyquah <fyquah@protonmail.com> | 2021-03-01 15:24:28 +0000 |
commit | fbbb2d4fc13971c98c83a51635166ac532e71a32 (patch) | |
tree | 0af321eb5e48a5a38194bdfff1ea5b102a9c2165 /contrib/verifybinaries | |
parent | ad89812c70a9b88be642fceffb970859f6fdcba2 (diff) |
lint: Fix spelling errors in comments
Diffstat (limited to 'contrib/verifybinaries')
-rwxr-xr-x | contrib/verifybinaries/verify.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/verifybinaries/verify.py b/contrib/verifybinaries/verify.py index b97ad11b8e..6cbaf2dc0c 100755 --- a/contrib/verifybinaries/verify.py +++ b/contrib/verifybinaries/verify.py @@ -51,7 +51,7 @@ def download_with_wget(remote_file, local_file=None): if local_file: wget_args = ['wget', '-O', local_file, remote_file] else: - # use timestamping mechanism if local filename is not explicitely set + # use timestamping mechanism if local filename is not explicitly set wget_args = ['wget', '-N', remote_file] result = subprocess.run(wget_args, @@ -85,7 +85,7 @@ def main(args): print("Error: need to specify a version on the command line") return 3 - # determine remote dir dependend on provided version string + # determine remote dir dependent on provided version string version_base, version_rc, os_filter = parse_version_string(args[0]) remote_dir = f"/bin/{VERSIONPREFIX}{version_base}/" if version_rc: |