change delimiter back to comma

This commit is contained in:
Kenneth Kehl
2024-08-12 07:27:32 -07:00
parent 6cb03d962e
commit bda957f76a

View File

@@ -88,7 +88,7 @@ def download_all_users():
writer = csv.DictWriter(
output,
fieldnames=fieldnames,
delimiter="\t",
delimiter=",",
)
# Write custom header
writer.writerow(dict(zip(fieldnames, header)))