Browse Source

as usual, some songs fuck things up in yaml (this time, the song is purely a number and it is converted to int)

master
Julio Biason 11 years ago
parent
commit
590a82766a
  1. 2
      db/db.py

2
db/db.py

@ -68,7 +68,7 @@ for song in result:
else:
artist = 'yes'
song = song['song'].lower()
song = unicode(song['song']).lower()
print '\t', artist, '-', song

Loading…
Cancel
Save