On 02:50 am, b...@indoakses-online.com wrote:
>[snip]
>The problem is when there is msg coming from XMPP part
>It's received by the xmpp client part, but script complaining about
>'SerialPort' object has no attribute 'transport'
>I tried to send text from another xmppclient (pidgin)

A SerialPort doesn't have a transport.  It is a transport.  Instead of:

    self.serial.transport.write(foo)

try

    self.serial.write(foo)

Jean-Paul

_______________________________________________
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to