diff --git a/setup.py b/setup.py index 3ae4156..97e8781 100755 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def build_extension(self, ext): return build_ext.build_extension(self, ext) except CompileError: if ext.extra_compile_args and '-maes' in ext.extra_compile_args: - print "Failed to build; Compiling without AES-NI" + print ("Failed to build; Compiling without AES-NI") ext.extra_compile_args.remove('-maes') ext.extra_compile_args.remove('-mpclmul') return build_ext.build_extension(self, ext)