From 39a02e258d0c47e781df377cbd88d999f966dcae Mon Sep 17 00:00:00 2001 From: Daniel Pyrathon Date: Sat, 2 Aug 2014 13:01:14 +0200 Subject: [PATCH] pep8 fix --- django/db/models/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/options.py b/django/db/models/options.py index 7edc8349f5949..706980b5f3c6f 100644 --- a/django/db/models/options.py +++ b/django/db/models/options.py @@ -512,7 +512,7 @@ def get_fields(self, m2m=False, data=True, related_m2m=False, related_objects=Fa fields[obj] = query_name # Tree is computer once and cached until apps cache is expired. It is composed of - # { options_instance : [field_pointing_to_options_model, field_pointing_to_options, ..]} + # {options_instance : [field_pointing_to_options_model, field_pointing_to_options, ..]} # If the model is a proxy model, then we also add the concrete model. tree, proxy_tree = self.apps.related_objects_relation_graph all_fields = tree[self] if not self.proxy else chain(tree[self], tree[self.concrete_model._meta])