Skip to content

Commit d5ecf61

Browse files
committed
[py] Fix print
1 parent 9408eeb commit d5ecf61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/remote/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def start(self):
157157
sock.connect((host, self.port))
158158
raise ConnectionError(f"Selenium server is already running, or something else is using port {self.port}")
159159
except ConnectionRefusedError:
160-
print(f"Starting Selenium server: {self.path}")
160+
print(f"Starting Selenium server...")
161161
self.process = subprocess.Popen(command, env=self.env)
162162
print(f"Selenium server running as process: {self.process.pid}")
163163
if not self._wait_for_server():

0 commit comments

Comments
 (0)