Skip to content

Commit

Permalink
Fixed params order
Browse files Browse the repository at this point in the history
  • Loading branch information
Buhle79 committed Jan 9, 2024
1 parent a425108 commit 1b226a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Django 4.1.13 on 2024-01-08 10:11

from django.db import migrations
from django.db import migrations, models


def update_template_names(ContentPage, ContentType, Revision):
Expand Down Expand Up @@ -29,7 +29,7 @@ def run_migration(apps, schema_editor):
ContentType = apps.get_model("contenttypes", "ContentType")
ContentPage = apps.get_model("home", "ContentPage")
Revision = apps.get_model("wagtailcore", "Revision")
update_template_names(ContentType, ContentPage, Revision)
update_template_names(ContentPage, ContentType, Revision)


class Migration(migrations.Migration):
Expand Down

0 comments on commit 1b226a8

Please sign in to comment.