summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjanus <janus@animux.de>2011-03-28 20:29:23 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2011-03-28 21:44:47 +0200
commit63c8d691a995c6a11f6c548dfe54e797abecfde0 (patch)
treed89808b826c7e140713a16cf08246afe01d16de9
parenta5c1c9260fb01204112f8b8868170d15dd05019c (diff)
downloadtodolist-63c8d691a995c6a11f6c548dfe54e797abecfde0.tar.gz
todolist-63c8d691a995c6a11f6c548dfe54e797abecfde0.tar.xz
todolist-63c8d691a995c6a11f6c548dfe54e797abecfde0.zip
fix typoHEADmaster
-rw-r--r--storage/sqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/sqlite.py b/storage/sqlite.py
index a7e98e9..df4c83d 100644
--- a/storage/sqlite.py
+++ b/storage/sqlite.py
@@ -37,7 +37,7 @@ class sqlite(storageBase):
desc BLOB,
completed INTEGER(1) DEFAULT (0),
removed INTEGER(1) DEFAULT (0),
- add due INTEGER DEFAULT (0)
+ due INTEGER DEFAULT (0)
)''')
self.cur.execute('drop table if exists control')