mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-04 20:54:48 -04:00
Use utcnow for creation_time
because utc timestamps are used in logs and for online_dc, too.
This commit is contained in:
parent
812916f179
commit
679473f7b4
1 changed files with 1 additions and 1 deletions
|
@ -67,5 +67,5 @@ def render_template(clients, output, title='TeamspeakStats',
|
|||
with open(output, 'w', encoding='utf-8') as f:
|
||||
f.write(template.render(title=title, objs=objs,
|
||||
debug=logger.level <= logging.DEBUG,
|
||||
creation_time=datetime.now()))
|
||||
creation_time=datetime.utcnow()))
|
||||
logger.debug('Wrote rendered template to %s', output)
|
||||
|
|
Loading…
Add table
Reference in a new issue