Skip to content

Commit

Permalink
Merge pull request #469 from Flow-Launcher/cibere-patch-1
Browse files Browse the repository at this point in the history
Fix misspelling of match in regex download url error
  • Loading branch information
VictoriousRaptor authored Feb 21, 2025
2 parents 3265caa + fbd13a8 commit 6eff6f0
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 6eff6f0

Please sign in to comment.