From: Federico Caselli Date: Wed, 5 Jan 2022 20:31:31 +0000 (+0100) Subject: Fix AttributeError typo in setup.py that prevented fallback X-Git-Tag: rel_2_0_0b1~558^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c87a08ed8f383466f252c2054bd44b87102149b1;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix AttributeError typo in setup.py that prevented fallback pure python build if the compilation fails Fixes: #7539 Change-Id: I4bf7905eb7a5337213ce922d005d2fffb8b9079c --- diff --git a/setup.py b/setup.py index 500be62a98..6049589225 100644 --- a/setup.py +++ b/setup.py @@ -165,7 +165,7 @@ else: raise status_msgs( - exc.cause, + exc.__cause__, "WARNING: The Cython extension could not be compiled, " "speedups are not enabled.", "Failure information, if any, is above.",