Skip to content

Commit

Permalink
Cleaned up loaddata command options help text
Browse files Browse the repository at this point in the history
  • Loading branch information
ptone committed Oct 1, 2012
1 parent 55fa86a commit 2aac3ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/core/management/commands/loaddata.py
Expand Up @@ -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):
Expand Down

0 comments on commit 2aac3ce

Please sign in to comment.