From 31309d4722aa5e08d10733f8cf36d3184799044b Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 13 Sep 2014 09:47:14 +0200 Subject: [PATCH] [1.7.x] Fixed #23478 -- Complemented sqlmigrate command help --- django/core/management/commands/sqlmigrate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/core/management/commands/sqlmigrate.py b/django/core/management/commands/sqlmigrate.py index 46b9ba99293..36cdf154b6c 100644 --- a/django/core/management/commands/sqlmigrate.py +++ b/django/core/management/commands/sqlmigrate.py @@ -19,6 +19,7 @@ class Command(BaseCommand): ) help = "Prints the SQL statements for the named migration." + args = "[app_label] [migration_name]" output_transaction = True def execute(self, *args, **options):