Fix playlist saving

The playlist was trying to save itself using the old save functions
This commit is contained in:
Bryan Schumaker 2010-11-26 16:46:26 -05:00
parent 506d21ca20
commit d690904b3b
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def load():
song_set = set(song_list)
def save():
libsaria.data.save(song_list, "playlist", ".list")
libsaria.path.files.save(song_list, "playlist", ".list")
def walk():
global song_list