1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-10 10:32:52 +08:00

Fix Flake8 style violations

This commit is contained in:
mars67857 2017-10-14 22:16:06 -07:00
parent a0a5cc854c
commit 8e46a0a461

View File

@ -1,6 +1,7 @@
from __future__ import unicode_literals
from .common import InfoExtractor
class CamModelsIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?cammodels\.com/cam/(?P<id>\w+)'
_MANIFEST_URL_ROOT_REGEX = r'manifestUrlRoot=(?P<id>https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*))'
@ -45,4 +46,4 @@ class CamModelsIE(InfoExtractor):
'age_limit': self._rta_search(webpage),
'ext': 'flv',
'formats': formats
}
}