Skip to content

Commit

Permalink
Fix typo in raise ValueError message for GeckoDriverManager if browse…
Browse files Browse the repository at this point in the history
…r not found. (#186)

* add log to firefox-wdm like chrome-wdm

* fix typo in firefox_version() ValueError message
  • Loading branch information
aleksandr-kotlyar committed Apr 28, 2021
1 parent 5c8a5bd commit 857bd7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webdriver_manager/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,6 @@ def firefox_version():
version = re.search(pattern, stdout)

if not version:
raise ValueError(f'Could not get version for Chrome with this command: {cmd}')
raise ValueError(f'Could not get version for Firefox with this command: {cmd}')
current_version = version.group(0)
return current_version

0 comments on commit 857bd7b

Please sign in to comment.