Skip to content

Commit f0b8548

Browse files
committed
fix(updater): correct GitHub API URL format in GithubUpdater
1 parent e705e18 commit f0b8548

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

basilisk/updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def extract_installer_from_zip(
328328

329329
class GithubUpdater(BaseUpdater):
330330
def __init__(self, pre_release: bool = False):
331-
self.url = f"https://api.github.com/repo/{APP_REPO}/releases"
331+
self.url = f"https://api.github.com/repos/{APP_REPO}/releases"
332332
self.headers = {
333333
"Accept": "application/vnd.github+json",
334334
"X-GitHub-Api-Version": "2022-11-28",

0 commit comments

Comments
 (0)