|  | @@ -80,7 +80,7 @@ class AppleTrailersIE(InfoExtractor):
 | 
	
		
			
				|  |  |              def _clean_json(m):
 | 
	
		
			
				|  |  |                  return 'iTunes.playURL(%s);' % m.group(1).replace('\'', ''')
 | 
	
		
			
				|  |  |              s = re.sub(self._JSON_RE, _clean_json, s)
 | 
	
		
			
				|  |  | -            s = '<html>' + s + u'</html>'
 | 
	
		
			
				|  |  | +            s = '<html>%s</html>' % s
 | 
	
		
			
				|  |  |              return s
 | 
	
		
			
				|  |  |          doc = self._download_xml(playlist_url, movie, transform_source=fix_html)
 | 
	
		
			
				|  |  |  
 |