From 4faddf1348d9926a8c5c5acb1f93ed2d5f981026 Mon Sep 17 00:00:00 2001 From: "robinwilliam.hundt" <robinwilliam.hundt@stud.uni-goettingen.de> Date: Sun, 18 Mar 2018 23:29:03 +0100 Subject: [PATCH] Chnanged output format of anonymization to csv from 'key previous identifier fullname' to 'key;previous identifier;fullname' --- hektor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hektor.py b/hektor.py index 37130d0..4d1a540 100644 --- a/hektor.py +++ b/hektor.py @@ -234,8 +234,8 @@ def do_anonymous(students: Dict[str, Union[str, List]]): } for r, student in zip(reverser, students)] with open(args.personal_secret_table, 'w') as out: - print('key, previous identifier, fullname', file=out) - print('\n'.join('%s %s %s' % (anonymous_key, + print('key;previous identifier;fullname', file=out) + print('\n'.join('%s;%s;%s' % (anonymous_key, data['identifier'], data['fullname']) for anonymous_key, data in reverser.items()), file=out) -- GitLab