Reorder init of backends due to dependencies between them

This commit is contained in:
Thomas Adamcik 2010-05-05 19:23:10 +02:00
parent eba3dd7c6d
commit f946386a7d

View File

@ -38,10 +38,10 @@ class GStreamerBackend(BaseBackend):
def __init__(self, *args, **kwargs):
super(GStreamerBackend, self).__init__(*args, **kwargs)
self.playback = GStreamerPlaybackController(self)
self.library = GStreamerLibraryController(self)
self.stored_playlists = GStreamerStoredPlaylistsController(self)
self.current_playlist = BaseCurrentPlaylistController(self)
self.library = GStreamerLibraryController(self)
self.playback = GStreamerPlaybackController(self)
self.uri_handlers = [u'file://']