diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-18 09:06:54 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-18 09:06:54 -0400 |
commit | e18354ae0e068d6e95ea13567e75da4f0c6c03eb (patch) | |
tree | cb33713dbfec266c39118b25df7627102e09d311 /sleekxmpp/xmlstream/xmlstream.py | |
parent | 4375ac7d8b9e62f34a4d3754a90b3538d5e978a3 (diff) | |
download | slixmpp-e18354ae0e068d6e95ea13567e75da4f0c6c03eb.tar.gz slixmpp-e18354ae0e068d6e95ea13567e75da4f0c6c03eb.tar.bz2 slixmpp-e18354ae0e068d6e95ea13567e75da4f0c6c03eb.tar.xz slixmpp-e18354ae0e068d6e95ea13567e75da4f0c6c03eb.zip |
Continue converting to underscored names.
Diffstat (limited to 'sleekxmpp/xmlstream/xmlstream.py')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 4c3dd9fe..5fd7be9d 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -755,7 +755,7 @@ class XMLStream(object): handler.prerun(stanza_copy) self.event_queue.put(('stanza', handler, stanza_copy)) try: - if handler.checkDelete(): + if handler.check_delete(): self.__handlers.pop(self.__handlers.index(handler)) except: pass # not thread safe |