12cf2e8247
Add IsEvadedOffense to EFPenalty Fix remote log reading in not Windows
6 lines
168 B
Python
6 lines
168 B
Python
import sys
|
|
if sys.platform == 'win32':
|
|
from tzlocal.win32 import get_localzone, reload_localzone
|
|
else:
|
|
from tzlocal.unix import get_localzone, reload_localzone
|