diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2018-09-11 12:46:58 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-09-11 12:47:17 -0400 |
| commit | a4d8e412e0295ac7d40bb87ee6e5f44649f97816 (patch) | |
| tree | 8576232b230edb99769d17bf6f711d5aa9202997 | |
| parent | a43cfc23d44abf6a3fe08e04117d67f7ab5d57bf (diff) | |
Refs #29560 -- Fixed typo in django/core/management/base.py.
| -rw-r--r-- | django/core/management/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index 354e778a70..db131ed757 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -95,7 +95,7 @@ class DjangoHelpFormatter(HelpFormatter): """ show_last = { '--version', '--verbosity', '--traceback', '--settings', '--pythonpath', - '--no-color', '--force_color', + '--no-color', '--force-color', } def _reordered_actions(self, actions): |
