From 9eada7d59640a4c418de127432efc20847896085 Mon Sep 17 00:00:00 2001 From: James Vasile Date: Fri, 16 Dec 2011 23:44:13 -0500 Subject: [PATCH] update withsqlite.py --- vendor/withsqlite/withsqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/withsqlite/withsqlite.py b/vendor/withsqlite/withsqlite.py index 40aaa8812..45d66c17b 100644 --- a/vendor/withsqlite/withsqlite.py +++ b/vendor/withsqlite/withsqlite.py @@ -112,7 +112,7 @@ True def __init__(self, fname, autocommit=False, check_same_thread=False): self.fname = fname + ".sqlite3" - self.autocomit = autocommit + self.autocommit = autocommit self.check_same_thread = check_same_thread def __enter__(self): if not os.path.exists(self.fname):