# HG changeset patch # User Goffi # Date 1446826182 -3600 # Node ID 001b62bed67c29cab9d32bac82adcb1cf7f2ae47 # Parent 075a63180eabdb3621d4033efed5e6979175f88c core (xmpp.py): fixed bad import diff -r 075a63180eab -r 001b62bed67c src/core/xmpp.py --- a/src/core/xmpp.py Tue Nov 03 10:23:08 2015 +0100 +++ b/src/core/xmpp.py Fri Nov 06 17:09:42 2015 +0100 @@ -27,10 +27,7 @@ from sat.core import exceptions from calendar import timegm from zope.interface import implements -try: - from twisted.words.protocols.xmlstream import XMPPHandler -except ImportError: - from wokkel.subprotocols import XMPPHandler +from twisted.words.protocols.jabber.xmlstream import XMPPHandler class SatXMPPClient(client.XMPPClient):