mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 16:27:45 +08:00
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
|