0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Keep publish_scheduled_pages command as an alias to publish_scheduled

This commit is contained in:
Sage Abdullah 2022-09-27 17:14:34 +01:00 committed by Matt Westcott
parent e4d34da9ab
commit 375ea5f4b9

View File

@ -0,0 +1,9 @@
from wagtail.management.commands.publish_scheduled import (
Command as PublishScheduledCommand,
)
class Command(PublishScheduledCommand):
"""
Alias for the publish_scheduled management command for backwards-compatibility.
"""