'formatVerse' now returns an empty string instead of '{su}{/su}'

This commit is contained in:
Oliver Wieland 2013-08-10 11:17:44 +02:00
parent 57bab85464
commit 77a4b0986a
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
2.1.0-bzr2234
2.2.2-bzr2285

View File

@ -954,7 +954,7 @@ class BibleMediaItem(MediaManagerItem):
elif self.settings.display_style == DisplayStyle.Square:
return u'{su}[%s]{/su}' % verse_text
else:
return u'{su}{/su}'
return u''
return u'{su}%s{/su}' % verse_text
def search(self, string, showError):