1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-19 23:55:39 +07:00

Remove useless u prefixes

This commit is contained in:
Philipp Hagemeister
2014-11-26 13:06:02 +01:00
parent 3aa578cad2
commit 8865bdeb37
11 changed files with 19 additions and 16 deletions

View File

@@ -45,4 +45,4 @@ def _real_extract(self, url):
real_id = self._search_regex(
r"video\.settings\.pid\s*=\s*'([^']+)';",
webpage, 'real video ID')
return self.url_result(u'theplatform:%s' % real_id)
return self.url_result('theplatform:%s' % real_id)