diff options
author | Michiel van Baak Jansen <[email protected]> | 2023-12-11 20:03:56 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2023-12-11 18:03:56 -0500 |
commit | 5e68fac4d175f2999b5b05bf7bdd02b76cdf942d (patch) | |
tree | 55571f81f24050cc2767f449d442016baab53150 /bazarr.py | |
parent | 256ceeb598e918cd26867ab583c8748193b31b88 (diff) | |
download | bazarr-5e68fac4d175f2999b5b05bf7bdd02b76cdf942d.tar.gz bazarr-5e68fac4d175f2999b5b05bf7bdd02b76cdf942d.zip |
Fixed function to prevent usage of Python 3.7v1.4.1-beta.5
Diffstat (limited to 'bazarr.py')
-rw-r--r-- | bazarr.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ from bazarr.app.get_args import args def check_python_version(): python_version = platform.python_version_tuple() - minimum_py3_tuple = (3, 7, 0) + minimum_py3_tuple = (3, 8, 0) minimum_py3_str = ".".join(str(i) for i in minimum_py3_tuple) if int(python_version[0]) < minimum_py3_tuple[0]: |