Remove blank lines

This commit is contained in:
Samuel Mehrbrodt 2017-06-12 22:53:08 +02:00
parent f5f4226891
commit 51e644711d
2 changed files with 0 additions and 3 deletions

View File

@ -277,7 +277,6 @@ class ServiceItem(RegistryProperties):
else:
log.error('Invalid value renderer: {item}'.format(item=self.service_item_type))
self.title = clean_tags(self.title)
if not self.footer_html:
self.footer_html = '<br>'.join([_f for _f in self.raw_footer if _f])

View File

@ -129,7 +129,6 @@ class SongsTab(SettingsTab):
self.neolatin_notation_radio_button.setText(
translate('SongsPlugin.SongsTab', 'Neo-Latin') + ' (Do-Re-Mi-Fa-Sol-La-Si)')
self.footer_group_box.setTitle(translate('SongsPlugin.SongsTab', 'Footer'))
# Keep this in sync with the list in mediaitem.py
const = '<code>"{}"</code>'
placeholders = [
@ -157,7 +156,6 @@ class SongsTab(SettingsTab):
['ccli_number', translate('SongsPlugin.SongsTab', 'Song CCLI Number'), True, False],
['topics', translate('SongsPlugin.SongsTab', 'Topics'), False, True],
]
placeholder_info = '<table style="background: #eee">\n<tr><th><b>{ph}</b></th><th><b>{desc}</b></th></tr>\n'\
.format(ph=translate('SongsPlugin.SongsTab', 'Placeholder'),
desc=translate('SongsPlugin.SongsTab', 'Description'))