diff options
Diffstat (limited to 'youtube_dl/extractor/eporner.py')
| -rw-r--r-- | youtube_dl/extractor/eporner.py | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/eporner.py b/youtube_dl/extractor/eporner.py index c050bf9df..fe42821c7 100644 --- a/youtube_dl/extractor/eporner.py +++ b/youtube_dl/extractor/eporner.py @@ -4,7 +4,6 @@ from __future__ import unicode_literals  import re  from .common import InfoExtractor -from ..compat import compat_str  from ..utils import (      encode_base_n,      ExtractorError, @@ -55,7 +54,7 @@ class EpornerIE(InfoExtractor):          webpage, urlh = self._download_webpage_handle(url, display_id) -        video_id = self._match_id(compat_str(urlh.geturl())) +        video_id = self._match_id(urlh.geturl())          hash = self._search_regex(              r'hash\s*:\s*["\']([\da-f]{32})', webpage, 'hash')  | 
