summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarlos Ramos <carlos.ramos1@alu.uclm.es>2014-09-16 21:05:50 +0200
committerCarlos Ramos <carlos.ramos1@alu.uclm.es>2014-09-16 21:05:50 +0200
commit7cdd5339b3a02b7429c945ae4cd1e70c7112d555 (patch)
treeb82f0c03541801a6d7e69cded56d056dba4c8973
parent38349518f1292b665905b0c2dc30d33021aaa8cb (diff)
downloadyoutube-dl-7cdd5339b3a02b7429c945ae4cd1e70c7112d555.tar.gz
youtube-dl-7cdd5339b3a02b7429c945ae4cd1e70c7112d555.tar.xz
youtube-dl-7cdd5339b3a02b7429c945ae4cd1e70c7112d555.zip
Change tabs to spaces
-rw-r--r--youtube_dl/extractor/allmyvideos.py48
1 files changed, 24 insertions, 24 deletions
diff --git a/youtube_dl/extractor/allmyvideos.py b/youtube_dl/extractor/allmyvideos.py
index 4cb559483..7764d4a14 100644
--- a/youtube_dl/extractor/allmyvideos.py
+++ b/youtube_dl/extractor/allmyvideos.py
@@ -25,27 +25,27 @@ class AllmyvideosIE(InfoExtractor):
     }
 
     def _real_extract(self, url):
-		mobj = re.match(self._VALID_URL, url)
-		video_id = mobj.group('id')
-
-		orig_webpage = self._download_webpage(url, video_id)
-		fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
-		data = {}
-		for name, value in fields:
-			data[name] = value
-
-		post = compat_urllib_parse.urlencode(data)
-		headers = {
-			b'Content-Type': b'application/x-www-form-urlencoded',
-		}
-		req = compat_urllib_request.Request(url, post, headers)
-		webpage = self._download_webpage(req, video_id, note='Downloading video page ...')
-
-		#Could be several links with different quality
-		links = re.findall(r'"file" : "?(.+?)",', webpage)
-
-		return {
-			'id': video_id,
-			'title': data['fname'][:len(data['fname'])-4],	#Remove .mp4 extension
-			'url': links[len(links)-1]						#Choose the higher quality link
-		}
\ No newline at end of file
+        mobj = re.match(self._VALID_URL, url)
+        video_id = mobj.group('id')
+
+        orig_webpage = self._download_webpage(url, video_id)
+        fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
+        data = {}
+        for name, value in fields:
+            data[name] = value
+
+        post = compat_urllib_parse.urlencode(data)
+        headers = {
+            b'Content-Type': b'application/x-www-form-urlencoded',
+        }
+        req = compat_urllib_request.Request(url, post, headers)
+        webpage = self._download_webpage(req, video_id, note='Downloading video page ...')
+
+        #Could be several links with different quality
+        links = re.findall(r'"file" : "?(.+?)",', webpage)
+
+        return {
+            'id': video_id,
+            'title': data['fname'][:len(data['fname'])-4],  #Remove .mp4 extension
+            'url': links[len(links)-1]                      #Choose the higher quality link
+        }
\ No newline at end of file