Skip to content
Snippets Groups Projects
Unverified Commit 229565a0 authored by Saad Yousaf's avatar Saad Yousaf Committed by GitHub
Browse files

Merge pull request #27126 from edx/saad/TNL-7971-followup

[TNL-7971] - Correct filename for anonymized id report.
parents 68bd33f3 5876c783
Branches
Tags release-2020-03-17-04.34
No related merge requests found
......@@ -518,7 +518,7 @@ def generate_anonymous_ids(_xmodule_instance_args, _entry_id, course_id, task_in
task_progress.attempted = students.count
_log_and_update_progress({'step': "Finished compiling learner rows"})
filename = str(course_id).replace('/', '-') + '-anon-ids'
upload_csv_to_report_store([header] + rows, filename, course_id, start_date)
csv_name = 'anonymized_ids'
upload_csv_to_report_store([header] + rows, csv_name, course_id, start_date)
return UPDATE_STATUS_SUCCEEDED
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment