From: Philip Jenvey Date: Sat, 11 Dec 2010 07:46:54 +0000 (-0800) Subject: [49145a6940062486a6eec66bfe5c9d95c5f76c7a] forgot the final arg to _handle_dbapi_exce... X-Git-Tag: rel_0_7b1~181 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fa0ea584248726b164008cb8e4257d207b03af9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git [49145a6940062486a6eec66bfe5c9d95c5f76c7a] forgot the final arg to _handle_dbapi_exception --- diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index dad075b345..a335b1d17b 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -1433,7 +1433,8 @@ class Connection(Connectable): e, statement, parameters, - cursor) + cursor, + None) raise def _safe_close_cursor(self, cursor):