summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2020-10-07 22:04:28 +0200
committerHelmut Grohne <helmut@subdivi.de>2020-10-07 22:05:51 +0200
commit26db3561b6f090a7294501d8ce1855db57611f21 (patch)
treefd24895e4e437ba1c0c0b7cc4d9bcfe04a84adf6
parentd8a9b7aa8c9882fdfc619e1ce27b71f207015762 (diff)
downloadcrossqa-26db3561b6f090a7294501d8ce1855db57611f21.tar.gz
build.py: fix up sql statement after refactoring
Fixes: 7b5da3c5b65e ("add build architecture to schema of builds table")
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index e095db2..0fdbe99 100755
--- a/build.py
+++ b/build.py
@@ -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: