diff options
| author | Min ho Kim <minho42@gmail.com> | 2019-08-12 20:53:36 +1000 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-08-12 12:53:36 +0200 |
| commit | 4f7328ce8a35160d155c41d362c3d674f8ef4d2d (patch) | |
| tree | a84662be7dddb5fac5591ba064843245edd794c1 /django | |
| parent | d7673d9edabf96a18176325cd7fde41d96d89bb8 (diff) | |
Corrected multiple typos.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/base.py | 4 | ||||
| -rw-r--r-- | django/core/management/utils.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index c725e5b75e..0376d67662 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -465,10 +465,10 @@ class BaseCommand: apps_waiting_migration = sorted({migration.app_label for migration, backwards in plan}) self.stdout.write( self.style.NOTICE( - "\nYou have %(unpplied_migration_count)s unapplied migration(s). " + "\nYou have %(unapplied_migration_count)s unapplied migration(s). " "Your project may not work properly until you apply the " "migrations for app(s): %(apps_waiting_migration)s." % { - "unpplied_migration_count": len(plan), + "unapplied_migration_count": len(plan), "apps_waiting_migration": ", ".join(apps_waiting_migration), } ) diff --git a/django/core/management/utils.py b/django/core/management/utils.py index c7580c1931..c201684c9c 100644 --- a/django/core/management/utils.py +++ b/django/core/management/utils.py @@ -113,7 +113,7 @@ def parse_apps_and_model_labels(labels): def get_command_line_option(argv, option): """ Return the value of a command line option (which should include leading - dashes, e.g. '--testrunnner') from an argument list. Return None if the + dashes, e.g. '--testrunner') from an argument list. Return None if the option wasn't passed or if the argument list couldn't be parsed. """ parser = CommandParser(add_help=False, allow_abbrev=False) |
