summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorJames Vasile <james@hackervisions.org>2011-12-16 23:44:13 -0500
committerJames Vasile <james@jamesvasile.com>2012-02-19 15:07:14 -0500
commitc324f0c973aa59a39168c5b87621c7fde764116a (patch)
treef994e0e579c84c75a50e847c5febebec5e247210 /vendor
parent20af8da743a0064a0336ce9826179cb0a08d8c0c (diff)
update withsqlite.py
Diffstat (limited to 'vendor')
-rw-r--r--vendor/withsqlite/withsqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/withsqlite/withsqlite.py b/vendor/withsqlite/withsqlite.py
index 40aaa88..45d66c1 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):