Skip to content

Commit

Permalink
Merge pull request #1011 from openedx/eahmadjaved/ENT-9815
Browse files Browse the repository at this point in the history
fix: partner name issue for exec-edx courses in csv file
  • Loading branch information
jajjibhai008 authored Dec 9, 2024
2 parents 354872e + f282888 commit b992f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise_catalog/apps/api/v1/export_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def exec_ed_course_to_row(hit):
row_data = _base_csv_row_data(hit)
csv_row = []
csv_row.append(row_data.get('title'))
csv_row.append(row_data.get('partners'))
csv_row.append(row_data.get('partner_name'))

csv_row.append(row_data.get('start_date'))
csv_row.append(row_data.get('end_date'))
Expand Down

0 comments on commit b992f31

Please sign in to comment.