|
|
@@ -262,7 +262,6 @@ class ShoutStation(AudioItem): |
|
|
|
|
|
|
|
class ShoutGenre(MusicGenre): |
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
log.msg('shoutcast genre created') |
|
|
|
self.genre = kwargs['genre'] |
|
|
|
del kwargs['genre'] |
|
|
|
self.feeds = ShoutcastFeedAsync(self.genre) |
|
|
@@ -372,7 +371,6 @@ class ShoutCast(Container): |
|
|
|
def detectshoutcastfile(path, fobj): |
|
|
|
path = os.path.basename(path) |
|
|
|
if path == 'SHOUTcast Radio': |
|
|
|
log.msg('matched shoutcast') |
|
|
|
return ShoutCast, { } |
|
|
|
return None, None |
|
|
|
|
|
|
|