Commit 7305d6f9 by Matt Tuchfarber

Add trim to instructor deduplicator

Current instructor list on program marketing page has duplicate
professors because they are manually entered and some have trailing
spaces. This fixes that.
parent 59490244
......@@ -679,5 +679,5 @@ class ProgramMarketingDataExtender(ProgramDataExtender):
# Deduplicate program instructors using instructor name
self.instructors.update(
{instructor.get('name'): instructor for instructor in course_instructors.get('instructors', [])}
{instructor.get('name', '').strip(): instructor for instructor in course_instructors.get('instructors', [])}
)
Markdown is supported
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