summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.py b/app.py
index 6585f47..748210b 100644
--- a/app.py
+++ b/app.py
@@ -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: