From 12fd88d2a4b158cbb1bf4a66470714aeb85de47b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 16 Sep 2015 09:10:59 -0400 Subject: Refs #24215 -- Fixed Python 3.5 compatiblity for unhandled lazy ops error. --- django/apps/registry.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'django/apps/registry.py') diff --git a/django/apps/registry.py b/django/apps/registry.py index 46c10ef4fb..3484d87aee 100644 --- a/django/apps/registry.py +++ b/django/apps/registry.py @@ -381,6 +381,10 @@ class Apps(object): def function(model): next_function = partial(supplied_fn, model) + # Annotate the function with its field for retrieval in + # migrations.state.StateApps. + if getattr(supplied_fn, 'keywords', None): + next_function.field = supplied_fn.keywords.get('field') self.lazy_model_operation(next_function, *more_models) # If the model is already loaded, pass it to the function immediately. -- cgit v1.2.1