1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-22 20:00:29 +03:00

Added warning on windows for large ints

This commit is contained in:
A_D 2020-11-23 08:50:07 +02:00 committed by Athanasius
parent 2de8967424
commit a85a3d356a

View File

@ -449,6 +449,8 @@ class WinConfig(AbstractConfig):
winreg.SetValueEx(self.__reg_handle, key, REG_RESERVED_ALWAYS_ZERO, winreg.REG_SZ, val)
elif isinstance(val, int): # The original code checked for numbers.Integral, I dont think that is needed.
if val > 0xFFFFFFFF or val < 0:
warnings.warn(f'Value of {val} is either too large or negative. This will cause issues.')
reg_type = winreg.REG_DWORD
elif isinstance(val, list):