Strange spacing appeared from nowhere

This commit is contained in:
Tim Bentley 2009-10-29 06:45:37 +00:00
parent 8e4f69383c
commit b447e382ad
1 changed files with 4 additions and 4 deletions

View File

@ -177,10 +177,10 @@ class BibleImportForm(QtGui.QDialog, Ui_BibleImportDialog):
def onLocationComboBoxSelected(self, value): def onLocationComboBoxSelected(self, value):
if value == 0: if value == 0:
self.loadBibleCombo(self.cwBibleVersions ) self.loadBibleCombo(self.cwBibleVersions)
self.cwActive = True self.cwActive = True
else: else:
self.loadBibleCombo(self.bgBibleVersions ) self.loadBibleCombo(self.bgBibleVersions)
self.cwActive = False self.cwActive = False
self.checkHttp() self.checkHttp()
@ -243,10 +243,10 @@ class BibleImportForm(QtGui.QDialog, Ui_BibleImportDialog):
# set a value as it will not be needed # set a value as it will not be needed
self.setMax(1) self.setMax(1)
if self.cwActive: if self.cwActive:
bible = self.cwBibleVersions [ bible = self.cwBibleVersions[
unicode(self.BibleComboBox.currentText())] unicode(self.BibleComboBox.currentText())]
else: else:
bible = self.bgBibleVersions [ bible = self.bgBibleVersions[
unicode(self.BibleComboBox.currentText())] unicode(self.BibleComboBox.currentText())]
loaded = self.biblemanager.register_http_bible( loaded = self.biblemanager.register_http_bible(
unicode(self.BibleComboBox.currentText()), unicode(self.BibleComboBox.currentText()),