summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-22 19:41:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-22 19:41:43 +0000
commit1663623fadf80dc64a6f89826decfa2cd04a158a (patch)
tree5ff85e8dfc8db68f62faf6336a69bb36aaa62a75
parentb58c8205584640ca746e9cad242e6735c665c981 (diff)
Fixed grammar error in error message from [1355]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1356 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/handlers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/base.py b/django/core/handlers/base.py
index c34d0b52cb..755df23752 100644
--- a/django/core/handlers/base.py
+++ b/django/core/handlers/base.py
@@ -20,7 +20,7 @@ class BaseHandler:
try:
dot = middleware_path.rindex('.')
except ValueError:
- raise exceptions.ImproperlyConfigured, '%s isn\'t look like a middleware module' % middleware_path
+ raise exceptions.ImproperlyConfigured, '%s isn\'t a middleware module' % middleware_path
mw_module, mw_classname = middleware_path[:dot], middleware_path[dot+1:]
try:
mod = __import__(mw_module, '', '', [''])