Kaydet (Commit) 9cebb953 authored tarafından Simon Charette's avatar Simon Charette

Adjusted a comment to reflect some app refactor changes.

üst 63028931
...@@ -70,9 +70,9 @@ def add_lazy_relation(cls, field, relation, operation): ...@@ -70,9 +70,9 @@ def add_lazy_relation(cls, field, relation, operation):
model_name = relation._meta.object_name model_name = relation._meta.object_name
# Try to look up the related model, and if it's already loaded resolve the # Try to look up the related model, and if it's already loaded resolve the
# string right away. If get_model returns None, it means that the related # string right away. If get_registered_model raises a LookupError, it means
# model isn't loaded yet, so we need to pend the relation until the class # that the related model isn't loaded yet, so we need to pend the relation
# is prepared. # until the class is prepared.
try: try:
model = cls._meta.apps.get_registered_model(app_label, model_name) model = cls._meta.apps.get_registered_model(app_label, model_name)
except LookupError: except LookupError:
......
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