From 78d9da5c2647d0f3c32bfc9ed7cf49984fe89ee6 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Mon, 22 Sep 2014 22:19:02 +0100 Subject: [PATCH] Fix comments and typos --- openlp/plugins/presentations/lib/impresscontroller.py | 4 +--- openlp/plugins/remotes/lib/httprouter.py | 2 +- .../openlp_plugins/presentations/test_impresscontroller.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index 92b23bda6..a6e52411b 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -479,9 +479,7 @@ class ImpressDocument(PresentationDocument): def create_titles_and_notes(self): """ - Writes the list of titles (one per slide) - to 'titles.txt' - and the notes to 'slideNotes[x].txt' + Writes the list of titles (one per slide) to 'titles.txt' and the notes to 'slideNotes[x].txt' in the thumbnails directory """ titles = [] diff --git a/openlp/plugins/remotes/lib/httprouter.py b/openlp/plugins/remotes/lib/httprouter.py index 8df6a1c8d..de69e809f 100644 --- a/openlp/plugins/remotes/lib/httprouter.py +++ b/openlp/plugins/remotes/lib/httprouter.py @@ -496,7 +496,7 @@ class HttpRouter(RegistryProperties): if current_item: for index, frame in enumerate(current_item.get_frames()): item = {} - # Handle text (songs, custom) + # Handle text (songs, custom, bibles) if current_item.is_text(): if frame['verseTag']: item['tag'] = str(frame['verseTag']) diff --git a/tests/functional/openlp_plugins/presentations/test_impresscontroller.py b/tests/functional/openlp_plugins/presentations/test_impresscontroller.py index 47053dcb0..bb3b43732 100644 --- a/tests/functional/openlp_plugins/presentations/test_impresscontroller.py +++ b/tests/functional/openlp_plugins/presentations/test_impresscontroller.py @@ -79,7 +79,7 @@ class TestImpressController(TestCase, TestMixin): 'The name of the presentation controller should be correct') -class TestImpressDocumnt(TestCase): +class TestImpressDocument(TestCase): """ Test the ImpressDocument Class """