fixed snapshot functionality for RestrictedCrouse embargo, select_related is now passed the proper hint. TNL-3452

This commit is contained in:
Brian Beggs
2015-09-30 16:57:46 -04:00
parent 42c02c8036
commit b73bf35899

View File

@@ -221,7 +221,7 @@ class RestrictedCourse(models.Model):
"""
country_rules_for_course = (
CountryAccessRule.objects
).select_related('restricted_country').filter(restricted_course=self)
).select_related('country').filter(restricted_course=self)
return {
'enroll_msg': self.enroll_msg_key,