summaryrefslogtreecommitdiff
path: root/poezio/connection.py
diff options
context:
space:
mode:
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):