This commit is contained in:
Armin Köhler 2012-03-21 22:00:44 +01:00
parent 12458c0d31
commit 0e34ed3a94
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,8 @@ class EditBibleForm(QtGui.QDialog, Ui_EditBibleDialog):
self.languageSelectionComboBox.setCurrentIndex(
int(self.bookname_language.value)+1)
self.books = {}
self.webbible = self.manager.get_meta_data(self.bible, u'download source')
self.webbible = self.manager.get_meta_data(self.bible,
u'download source')
if self.webbible:
self.bookNameNotice.setText(translate('BiblesPlugin.EditBibleForm',
'This is a webbible.\nIt is not possible to customize the Book '

View File

@ -81,7 +81,6 @@ def init_schema(url):
Column(u'book_reference_id', types.Integer, index=True),
Column(u'testament_reference_id', types.Integer),
Column(u'name', types.Unicode(50), index=True),
#Column(u'custom_name', types.Unicode(50), index=True),
)
verse_table = Table(u'verse', metadata,
Column(u'id', types.Integer, primary_key=True, index=True),