Skip to content

Commit b53d164

Browse files
authored
Merge pull request #65 from kmike/py3-no-cython
PY3 fixed installation without Cython
2 parents da032cf + c726f3b commit b53d164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, Extension
66
HAVE_CYTHON = True
77
except ImportError as e:
8-
warnings.warn(e.message)
8+
warnings.warn(e.args[0])
99
from setuptools import setup, Extension
1010
from setuptools.command.build_ext import build_ext
1111
HAVE_CYTHON = False

0 commit comments

Comments
 (0)