Add FIXME

This commit is contained in:
Thomas Adamcik 2010-04-29 22:31:36 +02:00
parent aae64d2c23
commit 8e6df64997

View File

@ -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://'):