improve coding style
This commit is contained in:
parent
e4d74e2778
commit
40fcba5edb
10 changed files with 12 additions and 12 deletions
|
@ -169,7 +169,7 @@ class RtmpFD(FileDownloader):
|
|||
self.report_error('[rtmpdump] Could not connect to RTMP server.')
|
||||
return False
|
||||
|
||||
while (retval == RD_INCOMPLETE or retval == RD_FAILED) and not test and not live:
|
||||
while retval in (RD_INCOMPLETE, RD_FAILED) and not test and not live:
|
||||
prevsize = os.path.getsize(encodeFilename(tmpfilename))
|
||||
self.to_screen('[rtmpdump] %s bytes' % prevsize)
|
||||
time.sleep(5.0) # This seems to be needed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue