[eporner] Simplify and hardcode age limit

This commit is contained in:
Sergey M․ 2015-02-25 01:08:54 +06:00
parent c8c34ccb20
commit 37f885650c
1 changed files with 2 additions and 3 deletions

View File

@ -35,8 +35,7 @@ class EpornerIE(InfoExtractor):
title = self._html_search_regex(
r'<title>(.*?) - EPORNER', webpage, 'title')
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, display_id)
redirect_url = 'http://www.eporner.com/config5/%s' % video_id
player_code = self._download_webpage(
redirect_url, display_id, note='Downloading player config')
@ -67,5 +66,5 @@ class EpornerIE(InfoExtractor):
'duration': duration,
'view_count': view_count,
'formats': formats,
'age_limit': self._rta_search(webpage),
'age_limit': 18,
}