Skip to content
Snippets Groups Projects
Commit 4c2e612a authored by Calen Pennington's avatar Calen Pennington
Browse files

Make mongoengine field for UsageKeys expect a Location

parent 9dc48c00
No related branches found
No related tags found
No related merge requests found
......@@ -59,9 +59,9 @@ class UsageKeyField(mongoengine.StringField):
"""
For now saves the usage key in the deprecated location i4x/c4x form
"""
assert isinstance(location, (NoneType, SlashSeparatedCourseKey))
assert isinstance(location, (NoneType, Location))
if location is None:
return location
return None
return super(UsageKeyField, self).to_mongo(location.to_deprecated_string())
def to_python(self, location):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment