aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/rtmp.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-17 00:06:41 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-17 00:06:41 +0100
commit7af808a5ef4cc17ca30c8c4636660589e0e915ec (patch)
tree013daad2c72dec20b2bb19ab9121eec189ca37a1 /youtube_dl/downloader/rtmp.py
parent876bef5937526c6132fc22fab461d41bbf79014b (diff)
downloadyoutube-dl-7af808a5ef4cc17ca30c8c4636660589e0e915ec.zip
youtube-dl-7af808a5ef4cc17ca30c8c4636660589e0e915ec.tar.gz
youtube-dl-7af808a5ef4cc17ca30c8c4636660589e0e915ec.tar.bz2
Improve code style
Diffstat (limited to 'youtube_dl/downloader/rtmp.py')
-rw-r--r--youtube_dl/downloader/rtmp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/rtmp.py b/youtube_dl/downloader/rtmp.py
index 5759126..5346cb9 100644
--- a/youtube_dl/downloader/rtmp.py
+++ b/youtube_dl/downloader/rtmp.py
@@ -185,7 +185,7 @@ class RtmpFD(FileDownloader):
cursize = os.path.getsize(encodeFilename(tmpfilename))
if prevsize == cursize and retval == RD_FAILED:
break
- # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
+ # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
if prevsize == cursize and retval == RD_INCOMPLETE and cursize > 1024:
self.to_screen('[rtmpdump] Could not download the whole video. This can happen for some advertisements.')
retval = RD_SUCCESS