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

View File

@ -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,

View File

@ -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 = {