put timestamp after name in filename

This commit is contained in:
David Kilias 2020-03-14 13:02:03 +01:00
parent 715871dfbf
commit 51b3dde78e

View file

@ -78,7 +78,7 @@ def main(*_args):
new_data['mitgliederdaten'] = dict(zip(app.mem2.keys(), map(lambda f: f.value, app.mem2.values())))
new_data['timestamp'] = datetime.datetime.now().replace(microsecond=0).isoformat()
outfile_name = '{}_{}.json'.format(datetime.date.today().isoformat(), '_'.join(new_data['stammdaten']['fullname'].split()))
outfile_name = '{}_{}.json'.format('_'.join(new_data['stammdaten']['fullname'].split()),datetime.date.today().isoformat())
with open(outfile_name, 'w') as outfile:
json.dump(new_data, outfile, sort_keys=True, indent=4)