remove empty lines

This commit is contained in:
Oliver Wieland 2013-08-26 19:58:45 +02:00
parent 85813a1f99
commit 217ed36ee1
1 changed files with 2 additions and 4 deletions

View File

@ -748,12 +748,10 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
True if the function can't find any mismatched tags
False if there are mismatched tags.
"""
if len(_tags) % 2 != 0:
return False
if len(_tags) == 0:
return True
if len(_tags) % 2 != 0:
return False
for i in range(len(_tags)-1):
if _tags[i+1] == "{/" + _tags[i][1:]:
del _tags[i:i+2]