summaryrefslogtreecommitdiff
path: root/django/apps/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/apps/config.py')
-rw-r--r--django/apps/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/apps/config.py b/django/apps/config.py
index 76b3014d9d..98070e62c8 100644
--- a/django/apps/config.py
+++ b/django/apps/config.py
@@ -55,7 +55,7 @@ class AppConfig(object):
"""Attempt to determine app's filesystem path from its module."""
# See #21874 for extended discussion of the behavior of this method in
# various cases.
- # Convert paths to list because Python 3.3 _NamespacePath does not
+ # Convert paths to list because Python 3's _NamespacePath does not
# support indexing.
paths = list(getattr(module, '__path__', []))
if len(paths) != 1: