summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/handler/base.py
diff options
context:
space:
mode:
authorThom Nichols <tmnichols@gmail.com>2010-06-01 22:55:01 -0400
committerThom Nichols <tmnichols@gmail.com>2010-06-01 22:55:01 -0400
commit060b4c39385e548d1b28bc5ea5bdb29417e156ea (patch)
treed2c9369965b77e37bb065029ac572c35a9f5f1da /sleekxmpp/xmlstream/handler/base.py
parent49f5767aea2815211349d93aa03ce2b9dc088c1e (diff)
parent4eb210bff5753143300e5bf6ae09617901e9a28e (diff)
downloadslixmpp-060b4c39385e548d1b28bc5ea5bdb29417e156ea.tar.gz
slixmpp-060b4c39385e548d1b28bc5ea5bdb29417e156ea.tar.bz2
slixmpp-060b4c39385e548d1b28bc5ea5bdb29417e156ea.tar.xz
slixmpp-060b4c39385e548d1b28bc5ea5bdb29417e156ea.zip
Merge branch 'hacks' of github.com:tomstrummer/SleekXMPP
Diffstat (limited to 'sleekxmpp/xmlstream/handler/base.py')
-rw-r--r--sleekxmpp/xmlstream/handler/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/handler/base.py b/sleekxmpp/xmlstream/handler/base.py
index 5d55f4ee..a44edf0e 100644
--- a/sleekxmpp/xmlstream/handler/base.py
+++ b/sleekxmpp/xmlstream/handler/base.py
@@ -18,7 +18,7 @@ class BaseHandler(object):
def match(self, xml):
return self._matcher.match(xml)
- def prerun(self, payload):
+ def prerun(self, payload): # what's the point of this if the payload is called again in run??
self._payload = payload
def run(self, payload):