aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/lua/gradients.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lua/gradients.py')
-rwxr-xr-xtools/lua/gradients.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lua/gradients.py b/tools/lua/gradients.py
index f3dd13619f..0fa4c49775 100755
--- a/tools/lua/gradients.py
+++ b/tools/lua/gradients.py
@@ -17,6 +17,7 @@ def create_database(inpath, outpath):
TileMode TEXT,
EvenlySpaced INTEGER,
HardStopCount INTEGER,
+ Verb TEXT,
Positions TEXT
)''');
c.execute("DELETE FROM gradients");
@@ -26,7 +27,7 @@ def create_database(inpath, outpath):
for line in [line.strip() for line in results]:
gradients.append(line.split());
- c.executemany("INSERT INTO gradients VALUES (?, ?, ?, ?, ?, ?)",
+ c.executemany("INSERT INTO gradients VALUES (?, ?, ?, ?, ?, ?, ?)",
gradients);
conn.commit();