Skip to content
Snippets Groups Projects
Commit 0fc673be authored by Luigi Sbailo's avatar Luigi Sbailo
Browse files

Merge branch 'staging' of gitlab.mpcdf.mpg.de:nomad-lab/analytics into staging

parents 9ad64a4d 254650db
No related branches found
No related tags found
1 merge request!107Update gap si surface tutorial
......@@ -20,8 +20,8 @@ if __name__ == '__main__':
update = 'Last update: ' + update
authors_list = ''
for author in authors:
first_name = author.replace(',','').split()[1]
last_name = author.replace(',','').split()[0]
first_name = author.replace(',',' ').split(" ")[1]
last_name = author.replace(',',' ').split(" ")[0]
authors_list = authors_list + first_name + ' ' + last_name
if authors.index(author) < len(authors) -2 :
authors_list = authors_list + ', '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment