Update screen_utils.py

This commit is contained in:
chrys87 2018-05-30 13:16:52 +02:00 committed by GitHub
parent 4dc71060a1
commit ad4b3766fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ def hasMore(fd, timetout=0.2):
def hasMoreWaht(fdList, timetout=0.2):
if not isinstance(fdList, list):
return []
if fdList = []:
if fdList == []:
return []
r, _, _ = select.select(fdList, [], [], timetout)
return r