diff options
| author | Tim Graham <timograham@gmail.com> | 2016-02-08 07:41:02 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-08 07:41:25 -0500 |
| commit | db9f21f0ad29db860a10c1192933a79b0524ebc6 (patch) | |
| tree | 834bf941c10f65ac450c7968dead0475a44eb792 | |
| parent | 97eb3356b2a7488c8d0ca0e47ef3e538852d44a2 (diff) | |
Fixed typo in django/db/migrations/state.py.
| -rw-r--r-- | django/db/migrations/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/state.py b/django/db/migrations/state.py index e4213c2854..275d3b03a4 100644 --- a/django/db/migrations/state.py +++ b/django/db/migrations/state.py @@ -257,7 +257,7 @@ class StateApps(Apps): """ def extract_field(operation): # operation is annotated with the field in - # apps.register.Apps.lazy_model_operation(). + # apps.registry.Apps.lazy_model_operation(). return getattr(operation, 'field', None) def extract_field_names(operations): |
