Up last played limit from 15 to 30

This commit is contained in:
Bryan Schumaker 2010-11-02 19:20:11 -04:00
parent 5599e3dbf1
commit a97e82ef1c
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class Playlist(collection.Collection):
print "Skipping %s by %s because I don't think you want to hear it." % (title, artist)
continue
last.append((artist, title))
if len(last) > 15:
if len(last) > 30:
last.pop(0)
if i > 0:
print "Picking a song took %s iterations" % i