summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ian@ianbicking.org>2005-07-21 20:05:30 +0000
committerIan Bicking <ian@ianbicking.org>2005-07-21 20:05:30 +0000
commit9a2e855d784f0129554eca9f7e2ff068be170dcc (patch)
tree8cfa891f16561d00d6df4b37fe5f91743d4af6f5
parent9527302fe187801082afe2304cde258617b17957 (diff)
downloadpaste-git-9a2e855d784f0129554eca9f7e2ff068be170dcc.tar.gz
More suggestive error
-rw-r--r--paste/wareweb/dispatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/wareweb/dispatch.py b/paste/wareweb/dispatch.py
index 63b1aad..e907ec5 100644
--- a/paste/wareweb/dispatch.py
+++ b/paste/wareweb/dispatch.py
@@ -27,7 +27,7 @@ class MethodDispatch(object):
if self.__class__ is MethodDispatch:
raise NotImplementedError(
"MethodDispatch is an abstract class, and cannot be "
- "used directly")
+ "used directly (use one of its subclasses)")
cls.listeners.append(self.respond_event)
def respond_event(self, name, servlet, *args, **kw):