[tuxdroid-svn] r722 - api/python/trunk
Status: Beta
Brought to you by:
ks156
From: jaguarondi <c2m...@c2...> - 2007-11-21 16:06:13
|
Author: jaguarondi Date: 2007-11-21 17:06:15 +0100 (Wed, 21 Nov 2007) New Revision: 722 Modified: api/python/trunk/tuxapi_class.py Log: * A longer timeut is necessary for some new commands based on the id like the id lookup. Modified: api/python/trunk/tuxapi_class.py =================================================================== --- api/python/trunk/tuxapi_class.py 2007-11-21 16:04:07 UTC (rev 721) +++ api/python/trunk/tuxapi_class.py 2007-11-21 16:06:15 UTC (rev 722) @@ -615,7 +615,7 @@ # Fill up the end of the frame with 0 data.extend([0] * (TCPIP_FRAME_LENGTH - len(data))) self.parent._sock_send_frame("".join( [chr(x) for x in data] )) - return self.parent.status.rsp_status(connection_command, timeout=5) + return self.parent.status.rsp_status(connection_command, timeout=10) #-------------------------------------------------------------------------- # Disconnect from tux |