summaryrefslogtreecommitdiffstats
path: root/aurweb/git/update.py
diff options
context:
space:
mode:
Diffstat (limited to 'aurweb/git/update.py')
-rwxr-xr-xaurweb/git/update.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/aurweb/git/update.py b/aurweb/git/update.py
index 09a57ef0..c9a98d07 100755
--- a/aurweb/git/update.py
+++ b/aurweb/git/update.py
@@ -61,8 +61,9 @@ def create_pkgbase(conn, pkgbase, user):
now = int(time.time())
cur = conn.execute("INSERT INTO PackageBases (Name, SubmittedTS, " +
- "ModifiedTS, SubmitterUID, MaintainerUID) VALUES " +
- "(?, ?, ?, ?, ?)", [pkgbase, now, now, userid, userid])
+ "ModifiedTS, SubmitterUID, MaintainerUID, " +
+ "FlaggerComment) VALUES (?, ?, ?, ?, ?, '')",
+ [pkgbase, now, now, userid, userid])
pkgbase_id = cur.lastrowid
cur = conn.execute("INSERT INTO PackageNotifications " +