diff options
| -rw-r--r-- | pyramid/events.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/events.py b/pyramid/events.py index 68e400550..22cbf0cb2 100644 --- a/pyramid/events.py +++ b/pyramid/events.py @@ -24,7 +24,8 @@ class subscriber(object): def mysubscriber(event): event.request.foo = 1 - More than one event type can be passed as a construtor argument: + More than one event type can be passed as a construtor argument. The + decorated subscriber will be called for each event type. .. code-block:: python |
