PEP8 cleanups

This commit is contained in:
Roberto Rosario
2015-07-06 02:07:50 -04:00
parent 6eeba3ee67
commit b642e4005e
4 changed files with 5 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ def make_existing_documents_not_stubs(apps, schema_editor):
Document = apps.get_model('documents', 'Document')
for document in Document.objects.all():
document.is_stub=False
document.is_stub = False
document.save()