[flickr] Ensure format id is string
This commit is contained in:
		
							parent
							
								
									1693bebe4d
								
							
						
					
					
						commit
						15aeeb1188
					
				
					 1 changed files with 5 additions and 2 deletions
				
			
		| 
						 | 
					@ -1,7 +1,10 @@
 | 
				
			||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..compat import compat_urllib_parse_urlencode
 | 
					from ..compat import (
 | 
				
			||||||
 | 
					    compat_str,
 | 
				
			||||||
 | 
					    compat_urllib_parse_urlencode,
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
    int_or_none,
 | 
					    int_or_none,
 | 
				
			||||||
| 
						 | 
					@ -81,7 +84,7 @@ class FlickrIE(InfoExtractor):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            formats = []
 | 
					            formats = []
 | 
				
			||||||
            for stream in streams['stream']:
 | 
					            for stream in streams['stream']:
 | 
				
			||||||
                stream_type = str(stream.get('type'))
 | 
					                stream_type = compat_str(stream.get('type'))
 | 
				
			||||||
                formats.append({
 | 
					                formats.append({
 | 
				
			||||||
                    'format_id': stream_type,
 | 
					                    'format_id': stream_type,
 | 
				
			||||||
                    'url': stream['_content'],
 | 
					                    'url': stream['_content'],
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue