python3 does not have buffer

This commit is contained in:
Andreas Preikschat 2013-07-06 20:15:44 +02:00
parent d038aa1d9b
commit b0f0fb554f
1 changed files with 0 additions and 3 deletions

View File

@ -385,9 +385,6 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
# lazy xml migration for now
self.verse_list_widget.clear()
self.verse_list_widget.setRowCount(0)
# This is just because occasionally the lyrics come back as a "buffer"
if isinstance(self.song.lyrics, buffer):
self.song.lyrics = unicode(self.song.lyrics)
verse_tags_translated = False
if self.song.lyrics.startswith(u'<?xml version='):
songXML = SongXML()