From 874cf2852b4750f7e9d20085a585784a4c1c373f Mon Sep 17 00:00:00 2001 From: Leon Date: Fri, 2 Jun 2023 22:44:05 +0200 Subject: [PATCH] Update __init__.py --- undetected_chromedriver/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/undetected_chromedriver/__init__.py b/undetected_chromedriver/__init__.py index 5bae19e..5934f26 100644 --- a/undetected_chromedriver/__init__.py +++ b/undetected_chromedriver/__init__.py @@ -852,7 +852,7 @@ def find_chrome_executable(): ): candidates.add(os.sep.join((item, subitem, "chrome.exe"))) for candidate in candidates: - logger.debug('checking if %s exists and is executable' % condidate) + logger.debug('checking if %s exists and is executable' % candidate) if os.path.exists(candidate) and os.access(candidate, os.X_OK): logger.debug('found! using %s' % candidate) return os.path.normpath(candidate)