summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2022-01-05 21:59:52 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-01-05 21:59:52 +0000
commitcd0b050ce07e7fe1b46ef8fa2b5aabba9f812e41 (patch)
treea31af00382982a82560a15ff16909ce28f9d9ecb
parent146a349d81023805264f81643db50a5281da90da (diff)
parentc87a08ed8f383466f252c2054bd44b87102149b1 (diff)
downloadsqlalchemy-cd0b050ce07e7fe1b46ef8fa2b5aabba9f812e41.tar.gz
Merge "Fix AttributeError typo in setup.py that prevented fallback pure python build if the compilation fails" into main
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 500be62a9..604958922 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.",