From 51ceefc34c26b524f35cde50d4518159bb1ca737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Lundstr=C3=B6m?= Date: Mon, 30 Nov 2020 07:40:45 +0100 Subject: [PATCH] Mention the env var not the Python var When logging the error mention which environment variable to use to disable detection. This also matches GSSAPI_MAIN_LIB. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b3b35fe5..1d1646fa 100755 --- a/setup.py +++ b/setup.py @@ -195,7 +195,7 @@ def get_output(*args, **kwargs): if main_lib is None: raise Exception("Could not find main GSSAPI shared library. Please " "try setting GSSAPI_MAIN_LIB yourself or setting " - "ENABLE_SUPPORT_DETECTION to 'false'") + "GSSAPI_SUPPORT_DETECT to 'false'") GSSAPI_LIB = ctypes.CDLL(os.path.join(main_path, main_lib))