From 2aac3ce0c6d944093f5c32e170c9a0d90e8e1f94 Mon Sep 17 00:00:00 2001 From: Preston Holmes Date: Mon, 1 Oct 2012 14:46:12 -0700 Subject: [PATCH] Cleaned up loaddata command options help text --- django/core/management/commands/loaddata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/core/management/commands/loaddata.py b/django/core/management/commands/loaddata.py index a2e7f7d4c9..32ae8abf5a 100644 --- a/django/core/management/commands/loaddata.py +++ b/django/core/management/commands/loaddata.py @@ -33,8 +33,8 @@ class Command(BaseCommand): default=DEFAULT_DB_ALIAS, help='Nominates a specific database to load ' 'fixtures into. Defaults to the "default" database.'), make_option('--ignorenonexistent', '-i', action='store_true', dest='ignore', - default=False, help='Ignores entries in the serialised data for fields' - ' that have been removed from the database'), + default=False, help='Ignores entries in the serialized data for fields' + ' that do not currently exist on the model.'), ) def handle(self, *fixture_labels, **options):