don't import statemachine

This commit is contained in:
Nathan Fritz 2010-10-14 16:08:50 -07:00
parent 8468332381
commit aeb7999e6a
2 changed files with 1 additions and 2 deletions

View file

@ -524,7 +524,7 @@ class SleekTest(unittest.TestCase):
# Apply closing elements so that we can construct
# XML objects for comparison.
header2 = header + '</stream:stream>'
sent_header2 = sent_header + '</stream:stream>'
sent_header2 = sent_header + b'</stream:stream>'
xml = self.parse_xml(header2)
sent_xml = self.parse_xml(sent_header2)

View file

@ -9,7 +9,6 @@
from sleekxmpp.xmlstream.jid import JID
from sleekxmpp.xmlstream.scheduler import Scheduler
from sleekxmpp.xmlstream.stanzabase import StanzaBase, ElementBase, ET
from sleekxmpp.xmlstream.statemachine import StateMachine
from sleekxmpp.xmlstream.tostring import tostring
from sleekxmpp.xmlstream.xmlstream import XMLStream, RESPONSE_TIMEOUT
from sleekxmpp.xmlstream.xmlstream import RestartStream