From d75dc1670cf512c58a5d7310d6c3cba8367188f2 Mon Sep 17 00:00:00 2001 From: itzanetatos <35971805+itzanetatos@users.noreply.github.com> Date: Fri, 28 Jun 2019 14:11:26 +0300 Subject: [PATCH] Update setup.py Print statement on line 51 results in error due to missing parenthesis. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)