We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
self.process
self.path
1 parent 9a9fd49 commit 118f449Copy full SHA for 118f449
py/selenium/webdriver/common/service.py
@@ -90,7 +90,7 @@ def start(self) -> None:
90
try:
91
cmd = [self.path]
92
cmd.extend(self.command_line_args())
93
- child_process = self.process = subprocess.Popen(
+ self.process = subprocess.Popen(
94
cmd,
95
env=self.env,
96
close_fds=system() != "Windows",
@@ -99,7 +99,7 @@ def start(self) -> None:
99
stdin=PIPE,
100
creationflags=self.creation_flags,
101
)
102
- log.debug(f"Started executable: `{self.process}` in a child process with pid: {child_process.pid}")
+ log.debug(f"Started executable: `{self.path}` in a child process with pid: {self.process.pid}")
103
except TypeError:
104
raise
105
except OSError as err:
0 commit comments