Skip to content

Commit

Permalink
Fix misspelling of match in regex download url error
Browse files Browse the repository at this point in the history
  • Loading branch information
cibere authored Feb 20, 2025
1 parent 0bccaf7 commit fbd13a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/src/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def batch_github_plugin_info(
match = github_download_url_regex.match(info[url_download])
if not match:
raise ValueError(
f"Download URL did not mach regex: {info[url_download]!r}"
f"Download URL did not match regex: {info[url_download]!r}"
)
filename = f"{match['filename']}.zip"
for asset in assets:
Expand Down

0 comments on commit fbd13a8

Please sign in to comment.