From 9ad8976d748f4dc5869f159eed57e8d568d93f33 Mon Sep 17 00:00:00 2001 From: Ravi Date: Sun, 10 Jul 2011 22:57:19 -0400 Subject: [PATCH] fix typo --- youtube-dl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube-dl b/youtube-dl index 3e1d9cf6e..abe5a8018 100755 --- a/youtube-dl +++ b/youtube-dl @@ -608,8 +608,8 @@ class FileDownloader(object): # Extract information from URL and process it ie.extract(url) - #parallel downloader needs dummy at the end to signal end of queue - #for the thread to exit + #parallel downloader needs dummy at the end to signal end of queue + #for the thread to exit for i in xrange(self.params.get('parallel')): downloadqueue.put({'filename':None } ) @@ -2796,7 +2796,7 @@ if __name__ == '__main__': parser.add_option('-P','--parallel', type="int",dest='parallel',help='Number of parallel downloads',default=0) parser.add_option('-s', '--save-playlist', - action='store_true', dest='saveplaylist', help='do not create playlist file for playlists') + action='store_true', dest='saveplaylist', help='Save file list to a playlist file')