Browse Source

makewheel: Fix NameError on Windows build

[skip ci]
rdb 1 year ago
parent
commit
7b02aa7026
1 changed files with 1 additions and 1 deletions
  1. 1 1
      makepanda/makewheel.py

+ 1 - 1
makepanda/makewheel.py

@@ -23,7 +23,7 @@ def get_abi_tag():
     if hasattr(sys, 'abiflags'):
         return ver + sys.abiflags
 
-    gil_disabled = locations.get_config_var("Py_GIL_DISABLED")
+    gil_disabled = get_config_var("Py_GIL_DISABLED")
     if gil_disabled and int(gil_disabled):
         return ver + 't'