summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/handler/base.py
diff options
context:
space:
mode:
authorThom Nichols <tmnichols@gmail.com>2010-06-01 22:51:49 -0400
committerThom Nichols <tmnichols@gmail.com>2010-06-01 22:51:49 -0400
commit4eb210bff5753143300e5bf6ae09617901e9a28e (patch)
treef8a9b69630792567ddae16ce0627ee2c2b1c6caa /sleekxmpp/xmlstream/handler/base.py
parent1780ca900a9a78347745d95e7d8934ffae9d7594 (diff)
downloadslixmpp-4eb210bff5753143300e5bf6ae09617901e9a28e.tar.gz
slixmpp-4eb210bff5753143300e5bf6ae09617901e9a28e.tar.bz2
slixmpp-4eb210bff5753143300e5bf6ae09617901e9a28e.tar.xz
slixmpp-4eb210bff5753143300e5bf6ae09617901e9a28e.zip
fixed some major reconnection errors
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):