summaryrefslogtreecommitdiff
path: root/django/utils/autoreload.py
diff options
context:
space:
mode:
authorAnton Samarchyan <anton.samarchyan@savoirfairelinux.com>2017-01-24 15:32:33 -0500
committerTim Graham <timograham@gmail.com>2017-02-11 16:11:08 -0500
commit9718fa2e8abe430c3526a9278dd976443d4ae3c6 (patch)
treecc9e2c659759bbfdb4c7785c59a909cb2655af0d /django/utils/autoreload.py
parent98bcc5d81bca578f3a5b4d47907ba4ac40446887 (diff)
Refs #27656 -- Updated django.utils docstring verbs according to PEP 257.
Diffstat (limited to 'django/utils/autoreload.py')
-rw-r--r--django/utils/autoreload.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py
index 3fe47200ee..2784a89aeb 100644
--- a/django/utils/autoreload.py
+++ b/django/utils/autoreload.py
@@ -81,8 +81,7 @@ _cached_filenames = []
def gen_filenames(only_new=False):
"""
- Returns a list of filenames referenced in sys.modules and translation
- files.
+ Return a list of filenames referenced in sys.modules and translation files.
"""
# N.B. ``list(...)`` is needed, because this runs in parallel with
# application code which might be mutating ``sys.modules``, and this will
@@ -152,7 +151,7 @@ def reset_translations():
def inotify_code_changed():
"""
- Checks for changed code using inotify. After being called
+ Check for changed code using inotify. After being called
it blocks until a change event has been fired.
"""
class EventHandler(pyinotify.ProcessEvent):