summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-06-20 15:27:33 +0100
committerAndrew Godwin <andrew@aeracode.org>2013-06-20 15:27:33 +0100
commit0e8ee50e868e7ce501fffb48096fcf8d0b1e05a6 (patch)
treeb6529642a3a77979f6ed970aaa78e86dff2cb4d0 /django
parent47e4b86ddf67c3ab0725f41d4802bc05ed0a6423 (diff)
Rename makemigration to makemigrations
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/makemigrations.py (renamed from django/core/management/commands/makemigration.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/makemigration.py b/django/core/management/commands/makemigrations.py
index baf3f075ca..0f04b2fc1f 100644
--- a/django/core/management/commands/makemigration.py
+++ b/django/core/management/commands/makemigrations.py
@@ -20,7 +20,7 @@ class Command(BaseCommand):
)
help = "Creates new migration(s) for apps."
- usage_str = "Usage: ./manage.py createmigration [--empty] [app [app ...]]"
+ usage_str = "Usage: ./manage.py makemigrations [--empty] [app [app ...]]"
def handle(self, *app_labels, **options):