diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 15:24:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 15:24:55 -0400 |
commit | 3f708e849a56f2dc95d05d64e234fbd238d733c7 (patch) | |
tree | 51516d1b61e143b4a8dcedd1bf4f169ad24dde15 | |
parent | 6ff62b6dda0906648b0a5ce891e85231cbbb40d5 (diff) | |
parent | 646062fb13a54832a780d4b2e3fa08a86bc061d0 (diff) | |
download | winamp-3f708e849a56f2dc95d05d64e234fbd238d733c7.tar.gz |
Merge pull request #23 from EdwardBetts/patch-1
Correct a spelling mistake
-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) |