mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 04:49:36 -07:00
Fix system timezone string
This commit is contained in:
parent
04c54296fc
commit
5e6126ecbd
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ DOCUMENTATION :: END
|
|||
</tr>
|
||||
<tr>
|
||||
<td>System Timezone:</td>
|
||||
<td>${plexpy.SYS_TIMEZONE.zone} (${'UTC{}'.format(plexpy.SYS_UTC_OFFSET)})
|
||||
<td>${str(plexpy.SYS_TIMEZONE)} (${'UTC{}'.format(plexpy.SYS_UTC_OFFSET)})
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Python Version:</td>
|
||||
|
|
|
@ -236,7 +236,7 @@ def initialize(config_file):
|
|||
' - {}'.format(common.PLATFORM_LINUX_DISTRO) if common.PLATFORM_LINUX_DISTRO else ''
|
||||
))
|
||||
logger.info("{} (UTC{})".format(
|
||||
SYS_TIMEZONE.zone, SYS_UTC_OFFSET
|
||||
str(SYS_TIMEZONE), SYS_UTC_OFFSET
|
||||
))
|
||||
logger.info("Python {}".format(
|
||||
sys.version.replace('\n', '')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue