Index: tools/lua/gradients.py |
diff --git a/tools/lua/gradients.py b/tools/lua/gradients.py |
index f3dd13619fd4bbb46630efaceb3f627cb8fb5ee8..0fa4c49775d3c09d8a380461bfc6ad19982e14cd 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(); |