summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-01-15 15:47:29 -0800
committerTim Graham <timograham@gmail.com>2014-01-15 15:47:29 -0800
commit34490792f167f7703cf4396b4bb26163a8af6382 (patch)
treed110a5bee7a682694caf01c06fc22ca37d7f8c71
parentc8dca5077681d98725f75b9337c0c4918546f6b7 (diff)
parentcd69db68cf88703bac25150578bfe4e5d0dbcd3d (diff)
Merge pull request #2170 from numerodix/master
Fixed typo in comment.
-rw-r--r--django/apps/base.py2
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.