From 70e296343261170014e43e7ae6f5ca5ed324ecd7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 14 Apr 2017 18:09:01 +0200 Subject: [PATCH] build_release: Adjust repo name --- scripts/dev/build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index aca2d0ef0..c53454c41 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -278,7 +278,7 @@ def github_upload(artifacts, tag): with open(token_file, encoding='ascii') as f: token = f.read().strip() gh = github3.login(token=token) - repo = gh.repository('The-Compiler', 'qutebrowser') + repo = gh.repository('qutebrowser', 'qutebrowser') release = None # to satisfy pylint for release in repo.iter_releases():