Skip to content

Commit 34f1e94

Browse files
author
Machinexa2
authored
correcting one instance of self.platform usage(#8956)
Yesterday I opened a pull request: #8953 however, I forgot to replace `platform` with `self.platform`
1 parent b1f7fcc commit 34f1e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/firefox/firefox_binary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def kill(self):
8585
def _start_from_profile_path(self, path):
8686
self._firefox_env["XRE_PROFILE_PATH"] = path
8787

88-
if platform == 'linux':
88+
if self.platform == 'linux':
8989
self._modify_link_library_path()
9090
command = [self._start_cmd, "-foreground"]
9191
if self.command_line:

0 commit comments

Comments
 (0)