Merge pull request #19840 from cclauss/patch-1

Missing named argument in formatting call
This commit is contained in:
Ned Batchelder
2019-02-22 17:00:27 -05:00
committed by GitHub

View File

@@ -35,8 +35,8 @@ class CourseGoal(models.Model):
def __unicode__(self):
return 'CourseGoal: {user} set goal to {goal} for course {course}'.format(
user=self.user.username,
goal=self.goal_key,
course=self.course_key,
goal_key=self.goal_key,
)
class Meta: