Found one more old-style raise. Should fix #2122496.

This commit is contained in:
adustman
2008-10-18 00:13:35 +00:00
parent 570b96f9a7
commit 284b862950

View File

@ -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