From 8e6df64997d042caf4604618e41d203517fce073 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Thu, 29 Apr 2010 22:31:36 +0200 Subject: [PATCH] Add FIXME --- mopidy/backends/gstreamer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mopidy/backends/gstreamer.py b/mopidy/backends/gstreamer.py index c2604958..8cfd120a 100644 --- a/mopidy/backends/gstreamer.py +++ b/mopidy/backends/gstreamer.py @@ -170,6 +170,7 @@ class GStreamerStoredPlaylistsController(BaseStoredPlaylistsController): def save(self, playlist): file_path = os.path.join(self._folder, playlist.name + '.m3u') + # FIXME this should be a save_m3u function, not inside save with open(file_path, 'w') as file: for track in playlist.tracks: if track.uri.startswith('file://'):