Skip to content

Commit 6eff6f0

Browse files
Merge pull request #469 from Flow-Launcher/cibere-patch-1
Fix misspelling of match in regex download url error
2 parents 3265caa + fbd13a8 commit 6eff6f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/src/updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def batch_github_plugin_info(
5757
match = github_download_url_regex.match(info[url_download])
5858
if not match:
5959
raise ValueError(
60-
f"Download URL did not mach regex: {info[url_download]!r}"
60+
f"Download URL did not match regex: {info[url_download]!r}"
6161
)
6262
filename = f"{match['filename']}.zip"
6363
for asset in assets:

0 commit comments

Comments
 (0)