Skip to content

Commit 7e9888a

Browse files
committed
[py] Add character
1 parent 68f600d commit 7e9888a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/common/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def free_port() -> int:
4949
free_socket.listen(5)
5050
port: int = free_socket.getsockname()[1]
5151
except Exception as e:
52-
raise RuntimeError(f"Can't find free port ({e})")
52+
raise RuntimeError(f"Can't find free port: ({e})")
5353
finally:
5454
free_socket.close()
5555
return port

0 commit comments

Comments
 (0)