diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ def index_package(LPUSER, PPA, PACKAGE): @app.route("/<LPUSER>/<PPA>/<PACKAGE>/<RELEASE>") def index_release(LPUSER, PPA, PACKAGE, RELEASE): - autopkgtest_url_base = f"https://autopkgtest.ubuntu.com/results/autopkgtest-{RELEASE}-{LPUSER}-{PPA}" + autopkgtest_url_base = f"https://autopkgtest.ubuntu.com/results/autopkgtest-{RELEASE}-{LPUSER}-{PPA}/" try: data = json.loads(urlopen(f"{autopkgtest_url_base}?format=json").read()) except urllib.error.HTTPError: |