From 7d173d7b5021467b9ab9f12ad0f12ba915b3bbaa Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 9 May 2022 11:40:06 +0300 Subject: [PATCH] I added parentheses at line 56 --- 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)