mirror of
https://github.com/mjg59/python-broadlink.git
synced 2024-11-22 15:10:12 +01:00
bug fix in timeout (#70)
This commit is contained in:
parent
d346476e63
commit
19851ed423
@ -274,9 +274,8 @@ class device:
|
|||||||
response = self.cs.recvfrom(1024)
|
response = self.cs.recvfrom(1024)
|
||||||
break
|
break
|
||||||
except socket.timeout:
|
except socket.timeout:
|
||||||
if (time.time() - starttime) < self.timeout:
|
if (time.time() - starttime) > self.timeout:
|
||||||
pass
|
raise
|
||||||
raise
|
|
||||||
return bytearray(response[0])
|
return bytearray(response[0])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user