diff options
Diffstat (limited to 'django/core/management/commands/diffsettings.py')
| -rw-r--r-- | django/core/management/commands/diffsettings.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/django/core/management/commands/diffsettings.py b/django/core/management/commands/diffsettings.py index 9729131b3f..7bae48c218 100644 --- a/django/core/management/commands/diffsettings.py +++ b/django/core/management/commands/diffsettings.py @@ -14,9 +14,10 @@ class Command(BaseCommand): requires_system_checks = False def add_arguments(self, parser): - parser.add_argument('--all', action='store_true', dest='all', default=False, - help='Display all settings, regardless of their value. ' - 'Default values are prefixed by "###".') + parser.add_argument( + '--all', action='store_true', dest='all', default=False, + help='Display all settings, regardless of their value. Default values are prefixed by "###".', + ) def handle(self, **options): # Inspired by Postfix's "postconf -n". |
