summaryrefslogtreecommitdiffstats
path: root/aurweb/git/update.py
diff options
context:
space:
mode:
Diffstat (limited to 'aurweb/git/update.py')
-rwxr-xr-xaurweb/git/update.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/aurweb/git/update.py b/aurweb/git/update.py
index 0614e9ea..39128f8b 100755
--- a/aurweb/git/update.py
+++ b/aurweb/git/update.py
@@ -180,13 +180,13 @@ def save_metadata(metadata, conn, user):
# Add package groups.
if 'groups' in pkginfo:
for group in pkginfo['groups']:
- cur = conn.execute("SELECT ID FROM Groups WHERE Name = ?",
+ cur = conn.execute("SELECT ID FROM `Groups` WHERE Name = ?",
[group])
row = cur.fetchone()
if row:
groupid = row[0]
else:
- cur = conn.execute("INSERT INTO Groups (Name) VALUES (?)",
+ cur = conn.execute("INSERT INTO `Groups` (Name) VALUES (?)",
[group])
conn.commit()
groupid = cur.lastrowid