mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 11:10:58 +08:00
Found one more old-style raise. Should fix #2122496.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user