Fix comments and typos

This commit is contained in:
Tomas Groth 2014-09-22 22:19:02 +01:00
parent 4bacaab205
commit 78d9da5c26
3 changed files with 3 additions and 5 deletions

View File

@ -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 = []

View File

@ -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'])

View File

@ -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
"""