Skip to content

Commit

Permalink
Fixed function to prevent usage of Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbaak authored Dec 11, 2023
1 parent 256ceeb commit 5e68fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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]:
Expand Down

0 comments on commit 5e68fac

Please sign in to comment.