Quick hack to get songs back

This commit is contained in:
Tim Bentley 2010-09-08 19:00:48 +01:00
parent cfca50ff25
commit b39136782e
2 changed files with 5 additions and 1 deletions

View File

@ -519,6 +519,7 @@ def build_footer_css(item):
font-size: %spt; font-size: %spt;
color: %s; color: %s;
text-align: %s; text-align: %s;
vertical-align: bottom;
""" """
theme = item.themedata theme = item.themedata
if not theme or not item.footer: if not theme or not item.footer:

View File

@ -28,7 +28,10 @@ The :mod:`olp1import` module provides the functionality for importing
openlp.org 1.x song databases into the current installation database. openlp.org 1.x song databases into the current installation database.
""" """
import logging import logging
import sqlite try:
import sqlite
except:
pass
from openlp.core.lib import translate from openlp.core.lib import translate
from songimport import SongImport from songimport import SongImport