diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 492adf357..5fe96e7f0 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -43,6 +43,7 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): """ super(EditVerseForm, self).__init__(parent) self.setupUi(self) + self.has_single_verse = False self.insert_button.clicked.connect(self.on_insert_button_clicked) self.split_button.clicked.connect(self.on_split_button_clicked) self.verse_text_edit.cursorPositionChanged.connect(self.on_cursor_position_changed) diff --git a/scripts/jenkins_script.py b/scripts/jenkins_script.py index 98c908fc9..0053239f5 100755 --- a/scripts/jenkins_script.py +++ b/scripts/jenkins_script.py @@ -91,7 +91,7 @@ class JenkinsTrigger(object): """ self.token = token self.repo_name = get_repo_name() - self.jenkins_instance = Jenkins(JENKINS_URL, verify=False) + self.jenkins_instance = Jenkins(JENKINS_URL) def trigger_build(self): """ diff --git a/tests/interfaces/openlp_plugins/bibles/test_lib_http.py b/tests/interfaces/openlp_plugins/bibles/test_lib_http.py index ff9ce0382..f7dc70d48 100644 --- a/tests/interfaces/openlp_plugins/bibles/test_lib_http.py +++ b/tests/interfaces/openlp_plugins/bibles/test_lib_http.py @@ -119,7 +119,7 @@ class TestBibleHTTP(TestCase): def bibleserver_get_bibles_test(self): """ - Test getting list of bibles from BibelServer.com + Test getting list of bibles from BibleServer.com """ # GIVEN: A new Bible Server extraction class handler = BSExtract() @@ -134,7 +134,7 @@ class TestBibleHTTP(TestCase): def biblegateway_get_bibles_test(self): """ - Test getting list of bibles from BibelGateway.com + Test getting list of bibles from BibleGateway.com """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract()