Skip to content

Commit

Permalink
[py]: Remove invalid argument calls to _extract_and_check until rem…
Browse files Browse the repository at this point in the history
…oved
  • Loading branch information
symonk committed Oct 3, 2022
1 parent c22de96 commit a5423d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/firefox/firefox_binary.py
Expand Up @@ -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

Expand Down

0 comments on commit a5423d9

Please sign in to comment.