about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-11-21 19:31:20 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2011-11-21 19:31:20 +0100
commit5b3330e0cfda443f4df86d827bb892781ecc832f (patch)
tree14c0362197882326392f5259867a680547eba4a7
parentaab771fbdfeb7bb57b4a7d8e22e13bf34d31bac3 (diff)
downloadyoutube-dl-5b3330e0cfda443f4df86d827bb892781ecc832f.tar.gz
youtube-dl-5b3330e0cfda443f4df86d827bb892781ecc832f.tar.xz
youtube-dl-5b3330e0cfda443f4df86d827bb892781ecc832f.zip
Remove empty real_initialize defs
-rwxr-xr-xyoutube-dl30
1 files changed, 1 insertions, 29 deletions
diff --git a/youtube-dl b/youtube-dl
index 67f8a38fc..a1d1e2e0d 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -1562,9 +1562,6 @@ class DailymotionIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[dailymotion] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		# Extract id and simplified title from URL
 		mobj = re.match(self._VALID_URL, url)
@@ -1653,9 +1650,6 @@ class GoogleIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[video.google] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		# Extract id from URL
 		mobj = re.match(self._VALID_URL, url)
@@ -1760,9 +1754,6 @@ class PhotobucketIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[photobucket] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		# Extract id from URL
 		mobj = re.match(self._VALID_URL, url)
@@ -1842,9 +1833,6 @@ class YahooIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[video.yahoo] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url, new_video=True):
 		# Extract ID from URL
 		mobj = re.match(self._VALID_URL, url)
@@ -1995,9 +1983,6 @@ class VimeoIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[vimeo] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url, new_video=True):
 		# Extract ID from URL
 		mobj = re.match(self._VALID_URL, url)
@@ -2120,9 +2105,6 @@ class GenericIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[generic] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		# At this point we have a new video
 		self._downloader.increment_downloads()
@@ -2649,9 +2631,6 @@ class DepositFilesIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[DepositFiles] %s: Extracting information' % file_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		# At this point we have a new file
 		self._downloader.increment_downloads()
@@ -3042,9 +3021,6 @@ class MyVideoIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[myvideo] %s: Extracting information' % video_id)
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self,url):
 		mobj = re.match(self._VALID_URL, url)
 		if mobj is None:
@@ -3507,9 +3483,6 @@ class SoundcloudIE(InfoExtractor):
 		"""Report information extraction."""
 		self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
 
-	def _real_initialize(self):
-		return
-
 	def _real_extract(self, url):
 		htmlParser = HTMLParser.HTMLParser()
 
@@ -3536,7 +3509,7 @@ class SoundcloudIE(InfoExtractor):
 		self.report_extraction('%s/%s' % (uploader, slug_title))
 
 		# extract uid and stream token that soundcloud hands out for access
-		mobj = re.search('"uid":"([\w\d]+?)".*?stream_token=([\w\d]+)', webpage)   
+		mobj = re.search('"uid":"([\w\d]+?)".*?stream_token=([\w\d]+)', webpage)
 		if mobj:
 			video_id = mobj.group(1)
 			stream_token = mobj.group(2)
@@ -3639,7 +3612,6 @@ class InfoQIE(InfoExtractor):
 			return
 		video_title = mobj.group(1).decode('utf-8')
 
-
 		# Extract description
 		video_description = u'No description available.'
 		mobj = re.search(r'<meta name="description" content="(.*)"(?:\s*/)?>', webpage)