1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

prefs.py: Comment why except OSError being thrown away (wine check)

This commit is contained in:
Athanasius 2022-11-18 11:32:25 +00:00
parent 12b77f696b
commit f9d384cc6d
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -189,7 +189,7 @@ elif sys.platform == 'win32':
winreg.OpenKey(reg, WINE_REGISTRY_KEY)
is_wine = True
except OSError:
except OSError: # Assumed to be 'path not found', i.e. not-wine
pass
CalculatePopupWindowPosition = None