diff options
| -rw-r--r-- | README | 5 | ||||
| -rw-r--r-- | app.py | 2 | 
2 files changed, 6 insertions, 1 deletions
| @@ -0,0 +1,5 @@ +Dependencies: +* libjs-bootstrap +* libjs-jquery +* python3-flask +* python3-launchpadlib @@ -115,7 +115,7 @@ def human_sec(secs: int) -> str:  @app.route("/<LPUSER>/<PPA>/<PACKAGE>/<RELEASE>/<ARCH>")  def index_results(LPUSER, PPA, PACKAGE, RELEASE, ARCH): -    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}/"      data = json.loads(urlopen(f"{autopkgtest_url_base}?format=json").read())      # Use the prefix as index | 
