diff options
| author | Martin Matusiak <numerodix@gmail.com> | 2014-01-15 21:24:09 +0100 |
|---|---|---|
| committer | Martin Matusiak <numerodix@gmail.com> | 2014-01-15 21:24:09 +0100 |
| commit | cd69db68cf88703bac25150578bfe4e5d0dbcd3d (patch) | |
| tree | 9e1e7943832525fa92bbf67dc58694a1ac0f074d /django/apps | |
| parent | 2607fa901699916c4825f145fa8a84f49b8524ff (diff) | |
Fixed typo in comment.
Diffstat (limited to 'django/apps')
| -rw-r--r-- | django/apps/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/apps/base.py b/django/apps/base.py index 47f0a57711..ea28797108 100644 --- a/django/apps/base.py +++ b/django/apps/base.py @@ -99,7 +99,7 @@ class AppConfig(object): raise ImproperlyConfigured( "'%s' must supply a name attribute." % entry) - # Ensure app_names points to a valid module. + # Ensure app_name points to a valid module. app_module = import_module(app_name) # Entry is a path to an app config class. |
