From b037e1426bb80e6d91b740634e9032b1f92eb939 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Wed, 27 Jul 2022 17:31:19 -0400 Subject: [PATCH] Final 4.60.3 released to PyPI --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 0edf9a0c..2c92ac1b 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -22323,7 +22323,7 @@ def _mac_should_set_alpha_to_99(): # Final check is to see if Mac OS version is 12.3 or later try: platform_mac_ver = platform.mac_ver()[0] - mac_ver = platform_mac_ver.split('.') + mac_ver = platform_mac_ver.split('.') if '.' in platform_mac_ver else (platform_mac_ver, 0) if (int(mac_ver[0]) >= 12 and int(mac_ver[1]) >= 3) or int(mac_ver[0]) >= 13 : print("Mac OS Version is {} and patch enabled so applying the patch".format(platform_mac_ver)) return True