From ea182525491fed697592801a5fcde5a6e85ed619 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 3 Oct 2021 13:26:02 -0700 Subject: [PATCH] Fixes broken migration --- bookwyrm/migrations/0101_auto_20210929_1847.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/migrations/0101_auto_20210929_1847.py b/bookwyrm/migrations/0101_auto_20210929_1847.py index bdda8484f..3fca28eac 100644 --- a/bookwyrm/migrations/0101_auto_20210929_1847.py +++ b/bookwyrm/migrations/0101_auto_20210929_1847.py @@ -17,7 +17,7 @@ def infer_format(app_registry, schema_editor): for edition in editions: free_format = edition.physical_format_detail.lower() edition.physical_format = infer_physical_format(free_format) - edition.save(broadcast=False, update_fields=["physical_format"]) + edition.save() def reverse(app_registry, schema_editor):