summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-07-22 20:27:35 +0200
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-10-31 11:28:29 +0100
commit9bf7fa52134838a63591052f40d61afa5894da92 (patch)
tree250a72247d07a055d983a80e601a58b9fe1baa42
parent73f4e7afbab6b4189005bb65deb0325a020ea010 (diff)
downloadyoutube-dl-9bf7fa52134838a63591052f40d61afa5894da92.tar.gz
youtube-dl-9bf7fa52134838a63591052f40d61afa5894da92.tar.xz
youtube-dl-9bf7fa52134838a63591052f40d61afa5894da92.zip
Do not check for self._downloader being None in several places
-rwxr-xr-xyoutube-dl18
1 files changed, 6 insertions, 12 deletions
diff --git a/youtube-dl b/youtube-dl
index 49c07ae62..8c22081f8 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -1043,8 +1043,7 @@ class MetacafeIE(InfoExtractor):
 			return
 
 		# At this point we have a new video
-		if self._downloader is not None:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 
 		simple_title = mobj.group(2).decode('utf-8')
 		video_extension = 'flv'
@@ -1136,8 +1135,7 @@ class DailymotionIE(InfoExtractor):
 			return
 
 		# At this point we have a new video
-		if self._downloader is not None:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 		video_id = mobj.group(1)
 
 		simple_title = mobj.group(2).decode('utf-8')
@@ -1224,8 +1222,7 @@ class GoogleIE(InfoExtractor):
 			return
 
 		# At this point we have a new video
-		if self._downloader is not None:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 		video_id = mobj.group(1)
 
 		video_extension = 'mp4'
@@ -1335,8 +1332,7 @@ class PhotobucketIE(InfoExtractor):
 			return
 
 		# At this point we have a new video
-		if self._downloader is not None:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 		video_id = mobj.group(1)
 
 		video_extension = 'flv'
@@ -1420,8 +1416,7 @@ class YahooIE(InfoExtractor):
 			return
 
 		# At this point we have a new video
-		if self._downloader is not None and new_video:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 		video_id = mobj.group(2)
 		video_extension = 'flv'
 
@@ -1568,8 +1563,7 @@ class GenericIE(InfoExtractor):
 
 	def _real_extract(self, url):
 		# At this point we have a new video
-		if self._downloader is not None:
-			self._downloader.increment_downloads()
+		self._downloader.increment_downloads()
 
 		video_id = url.split('/')[-1]
 		request = urllib2.Request(url)