Skip to content

Commit

Permalink
Update to v1.1.3 (151023-2234)
Browse files Browse the repository at this point in the history
1. Fixed incorrect return of result in case of no chrome installed
  • Loading branch information
rzc0d3r authored Oct 15, 2023
1 parent cec617b commit eb0115b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/chrome_driver_installer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version 1.1.2 (121023-0936)
VERSION = 'v1.1.2 (121023-0936) by rzc0d3r'
# Version 1.1.3 (151023-2234)
VERSION = 'v1.1.3 (151023-2234) by rzc0d3r'
import sys

from platform import processor
Expand Down Expand Up @@ -64,8 +64,8 @@ def get_chrome_version():
if chrome_version is not None:
chrome_version = [chrome_version]+chrome_version.split('.')
else:
chrome_version = [None, [None, None, None, None]]
return chrome_version # [full, [major, _, minor, micro]]
chrome_version = [None, None, None, None, None]
return chrome_version # [full, major, _, minor, micro]

def get_driver_download_url(chrome_major_version=None):
_, archs = get_platform_for_chrome_driver()
Expand Down

0 comments on commit eb0115b

Please sign in to comment.