Remove useless u prefixes
This commit is contained in:
parent
3aa578cad2
commit
8865bdeb37
11 changed files with 19 additions and 16 deletions
|
@ -49,7 +49,7 @@ class YouPornIE(InfoExtractor):
|
|||
try:
|
||||
params = json.loads(json_params)
|
||||
except:
|
||||
raise ExtractorError(u'Invalid JSON')
|
||||
raise ExtractorError('Invalid JSON')
|
||||
|
||||
self.report_extraction(video_id)
|
||||
try:
|
||||
|
@ -103,7 +103,7 @@ class YouPornIE(InfoExtractor):
|
|||
self._sort_formats(formats)
|
||||
|
||||
if not formats:
|
||||
raise ExtractorError(u'ERROR: no known formats available for video')
|
||||
raise ExtractorError('ERROR: no known formats available for video')
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue