diff options
Diffstat (limited to 'MySQLdb')
-rw-r--r-- | MySQLdb/MySQLdb/cursors.py | 4 |
1 files changed, 2 insertions, 2 deletions
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]) |