Revision 2668
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
344 | 344 |
'''Autocommits if outside savepoint''' |
345 | 345 |
assert self._savepoint >= 0 |
346 | 346 |
if self.autocommit and self._savepoint == 0: |
347 |
self.log_debug('Autocommiting') |
|
347 |
self.log_debug('Autocommitting')
|
|
348 | 348 |
self.db.commit() |
349 | 349 |
|
350 | 350 |
def col_default(self, col): |
Also available in: Unified diff
sql.py: DbConn.do_autocommit(): Fixed typo in 'Autocommiting' debug message