Set current_track to None is base playback controller

This commit is contained in:
Thomas Adamcik 2010-02-07 05:11:18 +01:00
parent 56cdcde184
commit 081c35ebea

View File

@ -248,6 +248,7 @@ class BasePlaybackController(object):
def __init__(self, backend):
self.backend = backend
self.state = self.STOPPED
self.current_track = None
def play(self, id=None, position=None):
raise NotImplementedError