Skip to content

Commit

Permalink
Fix error in start_chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann committed Jul 5, 2023
1 parent 68fadb3 commit 1de8dec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
author = 'Michael Herrmann'

# Also update ../setup.py when you change this:
release = '3.2.0'
release = '3.2.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion helium/_impl/chromedriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def install_matching_chromedriver():
cached_chrome_version.write(chrome_version)
return join(
cache_directory,
'chromedriver' + '.exe' if platform.system() == 'Windows' else ''
'chromedriver' + ('.exe' if platform.system() == 'Windows' else '')
)

def _get_cache_directory():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'helium',
# Also update docs/conf.py when you change this:
version = '3.2.0',
version = '3.2.1',
author = 'Michael Herrmann',
author_email = 'michael+removethisifyouarehuman@herrmann.io',
description = 'Lighter browser automation based on Selenium.',
Expand Down

0 comments on commit 1de8dec

Please sign in to comment.