diff options
author | Helmut Grohne <helmut@subdivi.de> | 2020-10-07 22:04:28 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2020-10-07 22:05:51 +0200 |
commit | 26db3561b6f090a7294501d8ce1855db57611f21 (patch) | |
tree | fd24895e4e437ba1c0c0b7cc4d9bcfe04a84adf6 | |
parent | d8a9b7aa8c9882fdfc619e1ce27b71f207015762 (diff) | |
download | crossqa-26db3561b6f090a7294501d8ce1855db57611f21.tar.gz |
build.py: fix up sql statement after refactoring
Fixes: 7b5da3c5b65e ("add build architecture to schema of builds table")
-rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -96,7 +96,7 @@ def main(): cur.execute("""INSERT INTO builds (source, version, buildarch, hostarch, success, starttime, filename) - VALUES (?, ?, ?, ?, ?, ?);""", + VALUES (?, ?, ?, ?, ?, ?, ?);""", (source, version, 'amd64', architecture, success, timestamp, filename)) if requestid is not None: |