mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 21:03:21 -07:00
Initial Commit
This commit is contained in:
commit
88daa3fb91
1311 changed files with 256240 additions and 0 deletions
7
lib/tzlocal/__init__.py
Normal file
7
lib/tzlocal/__init__.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
import sys
|
||||
if sys.platform == 'win32':
|
||||
from tzlocal.win32 import get_localzone, reload_localzone
|
||||
elif 'darwin' in sys.platform:
|
||||
from tzlocal.darwin import get_localzone, reload_localzone
|
||||
else:
|
||||
from tzlocal.unix import get_localzone, reload_localzone
|
Loading…
Add table
Add a link
Reference in a new issue