Merge pull request #4097 from jsaalfeld/fix_pypi_module_error

fixing Module not found error
This commit is contained in:
Finn Stutzenstein 2019-01-10 12:39:56 +01:00 committed by GitHub
commit b01b20f4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ def move_submitters_to_own_model(apps, schema_editor):
continue # Skip the anonymous
submitter = Submitter(user=user, motion=motion, weight=weight)
submitter.save(force_insert=True)
submitter.save(force_insert=True, skip_autoupdate=True)
weight += 1