Ticket #11900: transaction.py.patch
File transaction.py.patch, 483 bytes (added by , 15 years ago) |
---|
-
transaction.
old new 243 243 raise 244 244 else: 245 245 if is_dirty(): 246 commit() 246 try: 247 commit() 248 except: 249 rollback() 250 raise 247 251 return res 248 252 finally: 249 253 leave_transaction_management()