remove hardcoded string at 'generated in...'

This commit is contained in:
Thor77 2015-05-17 15:39:16 +02:00
parent 2ad76f908c
commit 2149bc8c31
1 changed files with 2 additions and 1 deletions

View File

@ -187,9 +187,10 @@ def render_template():
onlinetime_str = str(onlinetime) + 'm' onlinetime_str = str(onlinetime) + 'm'
onlinetime_desc[idx] = (clid, nick, onlinetime_str, clients[clid]['connected']) onlinetime_desc[idx] = (clid, nick, onlinetime_str, clients[clid]['connected'])
with open(output_path, 'w+') as f: with open(output_path, 'w+') as f:
f.write(template.render(title=title, onlinetime=onlinetime_desc, kicks=desc('kicks'), pkicks=desc('pkicks'), bans=desc('bans'), seconds='{}.{}'.format(generation_delta.seconds, generation_delta.microseconds), f.write(template.render(title=title, onlinetime=onlinetime_desc, kicks=desc('kicks'), pkicks=desc('pkicks'), bans=desc('bans'), seconds='{}.{}'.format(generation_delta.seconds, generation_delta.microseconds),
date=generation_end.strftime('%d.%m.%Y um %H:%M'), date=generation_end.strftime('%d.%m.%Y %H:%M'),
show_onlinetime=show_onlinetime, show_onlinetime=show_onlinetime,
show_kicks=show_kicks, show_kicks=show_kicks,
show_pkicks=show_pkicks, show_pkicks=show_pkicks,