From 2c7eda1dc101cc6346b8120c5ce8fb2cac37fe75 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Fri, 7 Feb 2025 10:53:45 +0000 Subject: [PATCH] CI: Fix NameError in ci_lib._have_cmd() --- .ci/ci_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index afb62e02..25648bbe 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -56,7 +56,7 @@ def _have_cmd(args): if exc.errno == errno.ENOENT: return False raise - except subprocess.CallProcessError: + except subprocess.CalledProcessError: return False return True