diff options
author | Ian Bicking <ian@ianbicking.org> | 2005-07-21 20:05:30 +0000 |
---|---|---|
committer | Ian Bicking <ian@ianbicking.org> | 2005-07-21 20:05:30 +0000 |
commit | 9a2e855d784f0129554eca9f7e2ff068be170dcc (patch) | |
tree | 8cfa891f16561d00d6df4b37fe5f91743d4af6f5 | |
parent | 9527302fe187801082afe2304cde258617b17957 (diff) | |
download | paste-git-9a2e855d784f0129554eca9f7e2ff068be170dcc.tar.gz |
More suggestive error
-rw-r--r-- | paste/wareweb/dispatch.py | 2 |
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): |