mirror of https://github.com/morpheus65535/bazarr
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
|