@@ -404,7 +404,7 @@ def create_tabular_collaborator_report(publication_dict, config_dict, author, pu
404404 df = df [column_order ]
405405
406406 if file_format == "csv" :
407- report = df .to_csv (index = False , sep = separator , line_terminator = "\n " )
407+ report = df .to_csv (index = False , sep = separator , lineterminator = "\n " )
408408 fileio .save_string_to_file (save_dir_name , filename , report )
409409 else :
410410 ## If the file extension isn't .xlsx then there will be an error, so force it.
@@ -631,7 +631,7 @@ def create_tabular_summary_report(publication_dict, config_dict, authors_by_proj
631631 df = df [column_order ]
632632
633633 if file_format == "csv" :
634- report = df .to_csv (index = False , sep = separator , line_terminator = "\n " )
634+ report = df .to_csv (index = False , sep = separator , lineterminator = "\n " )
635635 fileio .save_string_to_file (save_dir_name , filename , report )
636636 else :
637637 ## If the file extension isn't .xlsx then there will be an error, so force it.
@@ -713,7 +713,7 @@ def create_tabular_project_report(publication_dict, config_dict, authors_by_proj
713713 df = df [column_order ]
714714
715715 if file_format == "csv" :
716- report = df .to_csv (index = False , sep = separator , line_terminator = "\n " )
716+ report = df .to_csv (index = False , sep = separator , lineterminator = "\n " )
717717 fileio .save_string_to_file (save_dir_name , filename , report )
718718 else :
719719 ## If the file extension isn't .xlsx then there will be an error, so force it.
0 commit comments