diff options
| author | Tim Graham <timograham@gmail.com> | 2017-01-31 08:04:47 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-31 08:05:15 -0500 |
| commit | e2b19e70c7df99b3dc00c174741d01c2977aef00 (patch) | |
| tree | 658406428490079dbddf3f505c0e1fa0ca0c8fad | |
| parent | 437e0ba5337e7bcc1425e1506675e6e780d06f42 (diff) | |
[1.11.x] Fixed typo in django/db/migrations/operations/special.py.
| -rw-r--r-- | django/db/migrations/operations/special.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/operations/special.py b/django/db/migrations/operations/special.py index 9ca0b07b0b..e27d257819 100644 --- a/django/db/migrations/operations/special.py +++ b/django/db/migrations/operations/special.py @@ -207,7 +207,7 @@ class RunPython(Operation): # Allow migrations using RunPython.noop to be squashed on Python 2 (it doesn't -# support serializating unbound method so install a module function instead). +# support serializing unbound methods so install a module function instead). if six.PY2: def noop(apps, schema_editor): return None |
