diff options
author | Anton Samarchyan <anton.samarchyan@savoirfairelinux.com> | 2017-01-25 14:02:33 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-02-21 11:58:42 -0500 |
commit | 5a6f70b4281817656db2f36c5919036d38fcce7f (patch) | |
tree | 0fa649e905d960b54c5a65d80be23e42f900c23d /django/core/management/utils.py | |
parent | 3eb679a86956d9eedf24492f0002de002f7180f5 (diff) | |
download | django-5a6f70b4281817656db2f36c5919036d38fcce7f.tar.gz |
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Diffstat (limited to 'django/core/management/utils.py')
-rw-r--r-- | django/core/management/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/utils.py b/django/core/management/utils.py index 5903e53341..a4ac6fad58 100644 --- a/django/core/management/utils.py +++ b/django/core/management/utils.py @@ -12,7 +12,7 @@ def popen_wrapper(args, os_err_exc_type=CommandError, stdout_encoding='utf-8'): """ Friendly wrapper around Popen. - Returns stdout output, stderr output and OS status code. + Return stdout output, stderr output, and OS status code. """ try: p = Popen(args, shell=False, stdout=PIPE, stderr=PIPE, close_fds=os.name != 'nt') @@ -28,7 +28,7 @@ def popen_wrapper(args, os_err_exc_type=CommandError, stdout_encoding='utf-8'): def handle_extensions(extensions): """ - Organizes multiple extensions that are separated with commas or passed by + Organize multiple extensions that are separated with commas or passed by using --extension/-e multiple times. For example: running 'django-admin makemessages -e js,txt -e xhtml -a' |