summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Borg <cyborg101010@gmail.com>2015-04-14 12:32:24 +0100
committerTim Graham <timograham@gmail.com>2015-04-14 08:10:39 -0400
commit6724ae1185040bfcb72c7957e955701fd7cb289e (patch)
treeff45d54de7facd17e22bd958215773d7fc6c27ce
parent42f9bbd9d945191168f6efee6fdb3fe75b73b2c8 (diff)
[1.8.x] Added missing periods in migrate help messages.
Backport of 503bbc49d894586934b520bafe116b2c40bb45ec from master
-rw-r--r--django/core/management/commands/migrate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py
index f623836c60..720cf392cc 100644
--- a/django/core/management/commands/migrate.py
+++ b/django/core/management/commands/migrate.py
@@ -44,13 +44,13 @@ class Command(BaseCommand):
default=DEFAULT_DB_ALIAS, help='Nominates a database to synchronize. '
'Defaults to the "default" database.')
parser.add_argument('--fake', action='store_true', dest='fake', default=False,
- help='Mark migrations as run without actually running them')
+ help='Mark migrations as run without actually running them.')
parser.add_argument('--fake-initial', action='store_true', dest='fake_initial', default=False,
help='Detect if tables already exist and fake-apply initial migrations if so. Make sure '
'that the current database schema matches your initial migration before using this '
'flag. Django will only check for an existing table name.')
parser.add_argument('--list', '-l', action='store_true', dest='list', default=False,
- help='Show a list of all known migrations and which are applied')
+ help='Show a list of all known migrations and which are applied.')
def handle(self, *args, **options):