From a5423d92d58a336af7ef2f5b340947d623a3bdee Mon Sep 17 00:00:00 2001 From: symonk Date: Mon, 3 Oct 2022 17:07:38 +0100 Subject: [PATCH] [py]: Remove invalid argument calls to `_extract_and_check` until removed --- py/selenium/webdriver/firefox/firefox_binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/selenium/webdriver/firefox/firefox_binary.py b/py/selenium/webdriver/firefox/firefox_binary.py index 6abf6c040835f..731ae920ba8c5 100644 --- a/py/selenium/webdriver/firefox/firefox_binary.py +++ b/py/selenium/webdriver/firefox/firefox_binary.py @@ -197,7 +197,7 @@ def _default_windows_location(self): def _modify_link_library_path(self): existing_ld_lib_path = os.environ.get("LD_LIBRARY_PATH", "") - new_ld_lib_path = self._extract_and_check(self.profile, self.NO_FOCUS_LIBRARY_NAME, "x86", "amd64") + new_ld_lib_path = self._extract_and_check(self.profile, "x86", "amd64") new_ld_lib_path += existing_ld_lib_path