mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 02:22:56 +08:00
5 lines
168 B
Python
5 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
|