Author: georg.brandl
Date: Sat Aug 11 17:39:18 2007
New Revision: 56928

Modified:
   python/branches/py3k/Modules/_sqlite/connection.c
Log:
Fix automatic replacing mistake.


Modified: python/branches/py3k/Modules/_sqlite/connection.c
==============================================================================
--- python/branches/py3k/Modules/_sqlite/connection.c   (original)
+++ python/branches/py3k/Modules/_sqlite/connection.c   Sat Aug 11 17:39:18 2007
@@ -378,7 +378,7 @@
         pysqlite_reset_all_statements(self);
 
         Py_BEGIN_ALLOW_THREADS
-        rc = sqlite3_prepare(self->db, "READONLYLLBACK", -1, &statement, 
&tail);
+        rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
         Py_END_ALLOW_THREADS
         if (rc != SQLITE_OK) {
             _pysqlite_seterror(self->db);
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to