diff --git a/setup.py b/setup.py index 2cf0bb342..307d06a5c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,6 @@ def run_setup(): if C_EXT and _install_ionc(): - print('C extension is enabled!') kw = dict( ext_modules=[ Extension( @@ -39,6 +38,7 @@ def run_setup(): ), ], ) + print('C extension is enabled!') else: print('Using pure python implementation.') kw = dict()