[1.11.x] Fixed typo in django/db/migrations/operations/special.py.

This commit is contained in:
Tim Graham 2017-01-31 08:04:47 -05:00
parent 437e0ba533
commit e2b19e70c7
1 changed files with 1 additions and 1 deletions

View File

@ -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