1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-24 01:14:32 +01:00

[intldropout] fixed netrc name

This commit is contained in:
Thomas Tsiakalakis 2019-03-03 13:53:11 +01:00
parent 7a99eaf5d6
commit 26115f5e84

View File

@ -15,7 +15,7 @@ import re
class IntlDropoutIE(VHXEmbedIE): class IntlDropoutIE(VHXEmbedIE):
IE_NAME = 'intldropout' IE_NAME = 'intldropout'
IE_DESC = 'International Dropout.tv' IE_DESC = 'International Dropout.tv'
_NETRC_MACHINE = 'intl.dropout.tv' _NETRC_MACHINE = 'intldropouttv'
_LOGIN_URL = 'https://intl.dropout.tv/login' _LOGIN_URL = 'https://intl.dropout.tv/login'
_LOGOUT_URL = 'https://intl.dropout.tv/logout' _LOGOUT_URL = 'https://intl.dropout.tv/logout'
_VALID_URL = r'https://intl\.dropout\.tv/(?:[^/]+/season:[^/]+/)?videos/(?P<id>.+)' _VALID_URL = r'https://intl\.dropout\.tv/(?:[^/]+/season:[^/]+/)?videos/(?P<id>.+)'