From cf510d332603e9f726c32defe5864ee9f3908854 Mon Sep 17 00:00:00 2001 From: adustman Date: Wed, 23 May 2001 03:16:12 +0000 Subject: [PATCH] Remove a debug string. --- MySQLdb/MySQLdb/connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MySQLdb/MySQLdb/connections.py b/MySQLdb/MySQLdb/connections.py index a7307e2..2ae98b8 100644 --- a/MySQLdb/MySQLdb/connections.py +++ b/MySQLdb/MySQLdb/connections.py @@ -80,7 +80,7 @@ class Connection: if self._transactional: self._db.query("ROLLBACK") else: - raise NotSupportedError, "XXX Not supported by server" + raise NotSupportedError, "Not supported by server" def cursor(self, cursorclass=None):