diff options
| author | Tim Graham <timograham@gmail.com> | 2014-01-15 15:47:29 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-15 15:47:29 -0800 |
| commit | 34490792f167f7703cf4396b4bb26163a8af6382 (patch) | |
| tree | d110a5bee7a682694caf01c06fc22ca37d7f8c71 | |
| parent | c8dca5077681d98725f75b9337c0c4918546f6b7 (diff) | |
| parent | cd69db68cf88703bac25150578bfe4e5d0dbcd3d (diff) | |
Merge pull request #2170 from numerodix/master
Fixed typo in comment.
| -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. |
