mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 00:05:46 +00:00
Give MySpace artist support a better name
This commit is contained in:
parent
7ae403d9fd
commit
f8703c4291
2 changed files with 3 additions and 3 deletions
|
@ -666,7 +666,7 @@ from .mtv import (
|
||||||
from .muenchentv import MuenchenTVIE
|
from .muenchentv import MuenchenTVIE
|
||||||
from .mwave import MwaveIE, MwaveMeetGreetIE
|
from .mwave import MwaveIE, MwaveMeetGreetIE
|
||||||
from .mychannels import MyChannelsIE
|
from .mychannels import MyChannelsIE
|
||||||
from .myspace import MySpaceIE, MySpaceAlbumIE, MySpaceArtistSongsIE
|
from .myspace import MySpaceIE, MySpaceAlbumIE, MySpaceArtistIE
|
||||||
from .myspass import MySpassIE
|
from .myspass import MySpassIE
|
||||||
from .myvi import (
|
from .myvi import (
|
||||||
MyviIE,
|
MyviIE,
|
||||||
|
|
|
@ -206,8 +206,8 @@ class MySpaceAlbumIE(InfoExtractor):
|
||||||
return self.playlist_result(entries, playlist_id, self._og_search_title(webpage))
|
return self.playlist_result(entries, playlist_id, self._og_search_title(webpage))
|
||||||
|
|
||||||
|
|
||||||
class MySpaceArtistSongsIE(InfoExtractor):
|
class MySpaceArtistIE(InfoExtractor):
|
||||||
IE_NAME = 'MySpace:artist:songs'
|
IE_NAME = 'MySpace:artist'
|
||||||
_VALID_URL = r'https?://myspace\.com/(?P<artist>[^/]*)/music/songs'
|
_VALID_URL = r'https?://myspace\.com/(?P<artist>[^/]*)/music/songs'
|
||||||
|
|
||||||
_TEST = {
|
_TEST = {
|
||||||
|
|
Loading…
Reference in a new issue