From 284b862950a1eb9c50ff97df1c8a3aee018ce33b Mon Sep 17 00:00:00 2001 From: adustman Date: Sat, 18 Oct 2008 00:13:35 +0000 Subject: [PATCH] Found one more old-style raise. Should fix #2122496. --- MySQLdb/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index 20de752..ead5a42 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -5,7 +5,7 @@ import sys from setuptools import setup, Extension if sys.version_info < (2, 3): - raise Error, "Python-2.3 or newer is required" + raise Error("Python-2.3 or newer is required") if os.name == "posix": from setup_posix import get_config