diff options
author | Edward Betts <edward@4angle.com> | 2024-09-24 15:08:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 15:08:55 -0400 |
commit | 646062fb13a54832a780d4b2e3fa08a86bc061d0 (patch) | |
tree | e2ab55552215a25d9e5b465ce7f94842230355c9 /vcpkg_version_finder.py | |
parent | 8bdb48161f4ba863ab8787c07760bf00c62c589b (diff) | |
download | winamp-646062fb13a54832a780d4b2e3fa08a86bc061d0.tar.gz |
Correct a spelling mistake
Diffstat (limited to 'vcpkg_version_finder.py')
-rw-r--r-- | vcpkg_version_finder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcpkg_version_finder.py b/vcpkg_version_finder.py index 71b01c22..5da2b8e9 100644 --- a/vcpkg_version_finder.py +++ b/vcpkg_version_finder.py @@ -17,7 +17,7 @@ else: VCPKG_PATH = Path(__file__).parent / 'vcpkg' if len(sys.argv) > 3: - print("the argumnets after the second one are ignored") + print("the arguments after the second one are ignored") if not VCPKG_PATH.exists(): @@ -57,4 +57,4 @@ with open(PKG_VERSION_JSON_PATHNAME) as f: versions_set = sorted(set(versions_list), reverse=True) for version in versions_set: - print(version)
\ No newline at end of file + print(version) |