Remove print statement
This commit is contained in:
parent
6a0f2239af
commit
d75fb9e836
|
|
@ -108,7 +108,6 @@ class CourseSessionProfileMutation(relay.ClientIDMutation):
|
||||||
)
|
)
|
||||||
csu.chosen_profile = profile
|
csu.chosen_profile = profile
|
||||||
csu.save()
|
csu.save()
|
||||||
print(user)
|
|
||||||
return cls(result=UpdateCourseProfileSuccess(user=csu))
|
return cls(result=UpdateCourseProfileSuccess(user=csu))
|
||||||
except CourseProfile.DoesNotExist:
|
except CourseProfile.DoesNotExist:
|
||||||
return cls(result=UpdateCourseProfileError("Course Profile does not exist"))
|
return cls(result=UpdateCourseProfileError("Course Profile does not exist"))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue