diff options
author | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 16:45:45 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 16:45:45 +0200 |
commit | bab219106d1b6761b4869ba60743e0c32ab7bf8c (patch) | |
tree | e6b04a8a282ace2a3f44fff2e59ed9ee6f4835d4 | |
parent | 25ecc4e47f54105c35f7ec67c001658418e1241d (diff) | |
download | crossqa-bab219106d1b6761b4869ba60743e0c32ab7bf8c.tar.gz |
webapp.py: fix schedule response
Fixes: a52d12012b1b ("webapp: add concept of "build architecture" to frontend")
-rw-r--r-- | webapp.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -278,8 +278,8 @@ schedule_template = """<!DOCTYPE html> <html> <body> <p>Scheduled a build of {{ request.form["source"]|e }} - {%- if request.form["architecture"] != "any" %} - for {{ request.form["architecture"]|e -}} + {%- if request.form["archpair"] != "any_any" %} + for {{ request.form["archpair"]|archpair_format -}} {%- endif %}. <p> </body> |