Fix for Docker build, capture TypeError. Fixes #962

This commit is contained in:
ilike2burnthing 2023-11-13 07:14:13 +00:00 committed by GitHub
parent ab4365894b
commit d772cf3f50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ class Patcher(object):
version_main_int = int(version_main)
# check if version_main_int is less than or equal to e.g 114
self.is_old_chromedriver = version_main and version_main_int <= 114
except ValueError:
except (ValueError,TypeError):
# If the conversion fails, print an error message
print("version_main cannot be converted to an integer")
# Set self.is_old_chromedriver to False if the conversion fails