summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-02 17:00:31 -0400
committerChris McDonough <chrism@plope.com>2011-07-02 17:00:31 -0400
commitb3a692f7a50592a569135e935883e0db2ece8b9a (patch)
tree3f9bfe692262d68e38ad2fd8a4ebee59815e7a34
parentac7a9aac93392ca035a983b138df4848b6a333b6 (diff)
downloadpyramid-b3a692f7a50592a569135e935883e0db2ece8b9a.tar.gz
pyramid-b3a692f7a50592a569135e935883e0db2ece8b9a.tar.bz2
pyramid-b3a692f7a50592a569135e935883e0db2ece8b9a.zip
intent
-rw-r--r--pyramid/events.py3
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