libsaria: playlist uses correct prefs.get() function

I forgot to change it over from get_pref()
This commit is contained in:
Bryan Schumaker 2011-04-30 10:55:03 -04:00
parent 6cb857d988
commit 9f0d8efbb7
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ def next():
id = None
if len(song_list) == 0:
return
if libsaria.prefs.get_pref("libsaria.random") == True:
if libsaria.prefs.get("libsaria.random") == True:
id = rand_next()
else:
id = seq_next()