diff options
Diffstat (limited to 'django/core/management/base.py')
| -rw-r--r-- | django/core/management/base.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index ab1f7e9f70..f0e711ac76 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -308,7 +308,10 @@ class BaseCommand: default=1, type=int, choices=[0, 1, 2, 3], - help="Verbosity level; 0=minimal output, 1=normal output, 2=verbose output, 3=very verbose output", + help=( + "Verbosity level; 0=minimal output, 1=normal output, 2=verbose output, " + "3=very verbose output" + ), ) self.add_base_argument( parser, @@ -322,7 +325,10 @@ class BaseCommand: self.add_base_argument( parser, "--pythonpath", - help='A directory to add to the Python path, e.g. "/home/djangoprojects/myproject".', + help=( + "A directory to add to the Python path, e.g. " + '"/home/djangoprojects/myproject".' + ), ) self.add_base_argument( parser, |
