From 2b5b909529dcb19db3d647acd84887687f8f2dd8 Mon Sep 17 00:00:00 2001 From: farcepest Date: Thu, 27 Sep 2012 12:06:58 -0400 Subject: Revert raise exc as value statements to raise exc, value since it breaks Python < 2.6. --- MySQLdb/MySQLdb/cursors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MySQLdb') diff --git a/MySQLdb/MySQLdb/cursors.py b/MySQLdb/MySQLdb/cursors.py index 53960ae..50614f9 100644 --- a/MySQLdb/MySQLdb/cursors.py +++ b/MySQLdb/MySQLdb/cursors.py @@ -166,7 +166,7 @@ class BaseCursor(object): try: r = None r = self._query(query) - except TypeError as m: + except TypeError, m: if m.args[0] in ("not enough arguments for format string", "not all arguments converted"): self.messages.append((ProgrammingError, m.args[0])) @@ -217,7 +217,7 @@ class BaseCursor(object): qv = m.group(1) try: q = [ qv % db.literal(a) for a in args ] - except TypeError as msg: + except TypeError, msg: if msg.args[0] in ("not enough arguments for format string", "not all arguments converted"): self.errorhandler(self, ProgrammingError, msg.args[0]) -- cgit v1.2.1