summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/vgstash/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vgstash/__init__.py b/src/vgstash/__init__.py
index ee07c78..e3ede03 100755
--- a/src/vgstash/__init__.py
+++ b/src/vgstash/__init__.py
@@ -308,9 +308,9 @@ class DB(object):
c = self.conn.cursor()
# TODO: do this better
c.execute("UPDATE games\
- SET title=?, system=?, ownership=?, progress=?\
+ SET title=?, system=?, ownership=?, progress=?, notes=?\
WHERE title=? AND system=?",
- (source.title, source.system, source.ownership, source.progress, target.title, target.system))
+ (source.title, source.system, source.ownership, source.progress, source.notes, target.title, target.system))
self.conn.commit()
return (c.rowcount > 0)
else: