diff options
| author | Tim Graham <timograham@gmail.com> | 2015-06-15 09:43:35 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-18 08:36:50 -0400 |
| commit | 7f1168e387dc1db70b6093cfd23a4a6978f48109 (patch) | |
| tree | c3a9f335536fa078d39ad43458feaeac990e3538 /django/apps | |
| parent | e5cb4e14118f3a508e3bc00ee7cd50bb0f18a61d (diff) | |
Removed support for Python 3.3.
Diffstat (limited to 'django/apps')
| -rw-r--r-- | django/apps/config.py | 2 |
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: |
