1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-05-09 23:27:30 +00:00

Give MySpace artist support a better name

This commit is contained in:
Allan Daemon 2017-05-14 13:53:57 -03:00 committed by Allan Daemon
parent 7ae403d9fd
commit f8703c4291
2 changed files with 3 additions and 3 deletions
youtube_dl/extractor

@ -666,7 +666,7 @@ from .mtv import (
from .muenchentv import MuenchenTVIE
from .mwave import MwaveIE, MwaveMeetGreetIE
from .mychannels import MyChannelsIE
from .myspace import MySpaceIE, MySpaceAlbumIE, MySpaceArtistSongsIE
from .myspace import MySpaceIE, MySpaceAlbumIE, MySpaceArtistIE
from .myspass import MySpassIE
from .myvi import (
MyviIE,

@ -206,8 +206,8 @@ class MySpaceAlbumIE(InfoExtractor):
return self.playlist_result(entries, playlist_id, self._og_search_title(webpage))
class MySpaceArtistSongsIE(InfoExtractor):
IE_NAME = 'MySpace:artist:songs'
class MySpaceArtistIE(InfoExtractor):
IE_NAME = 'MySpace:artist'
_VALID_URL = r'https?://myspace\.com/(?P<artist>[^/]*)/music/songs'
_TEST = {