summaryrefslogtreecommitdiff
path: root/poezio/connection.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-04-01 00:21:57 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-12 14:34:44 +0100
commit6d2bb1eab812901dd60c0e363de2278cf107a0ae (patch)
treeb4474b2e889b466e26c6d5a48abdb89a30a1a737 /poezio/connection.py
parent34d110e643824ee5bc48705e5fdf4024af6dd82b (diff)
downloadpoezio-6d2bb1eab812901dd60c0e363de2278cf107a0ae.tar.gz
poezio-6d2bb1eab812901dd60c0e363de2278cf107a0ae.tar.bz2
poezio-6d2bb1eab812901dd60c0e363de2278cf107a0ae.tar.xz
poezio-6d2bb1eab812901dd60c0e363de2278cf107a0ae.zip
Fix core handlers, broken in the previous commit.
Diffstat (limited to 'poezio/connection.py')
-rw-r--r--poezio/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/connection.py b/poezio/connection.py
index c4cc8b6b..b5d60a1b 100644
--- a/poezio/connection.py
+++ b/poezio/connection.py
@@ -211,7 +211,7 @@ class Connection(slixmpp.ClientXMPP):
Overrides XMLStream.send_raw, with an event added
"""
if self.core:
- self.core.outgoing_stanza(data)
+ self.core.handler.outgoing_stanza(data)
slixmpp.ClientXMPP.send_raw(self, data)
class MatchAll(slixmpp.xmlstream.matcher.base.MatcherBase):