Skip to content

Commit

Permalink
Merge pull request #713 from sileht/sileht/cythong-fix
Browse files Browse the repository at this point in the history
Fix _have_cython
  • Loading branch information
jaraco committed Aug 4, 2016
2 parents 5f3dac4 + de46545 commit aad4a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/extension.py
Expand Up @@ -19,7 +19,7 @@ def _have_cython():
"""
Return True if Cython can be imported.
"""
cython_impl = 'Cython.Distutils.build_ext',
cython_impl = 'Cython.Distutils.build_ext'
try:
# from (cython_impl) import build_ext
__import__(cython_impl, fromlist=['build_ext']).build_ext
Expand Down

0 comments on commit aad4a69

Please sign in to comment.