Fix bible function call

This commit is contained in:
Jon Tibble 2009-10-30 19:29:02 +00:00
parent ae67228139
commit 68a7fbcf56
1 changed files with 2 additions and 1 deletions

View File

@ -283,7 +283,8 @@ class BibleManager(object):
count = self.bible_db_cache[bible].get_max_bible_book_verses(
book, chapter)
if count == 0:
#text = self.get_verse_text(bible, book, chapter, chapter, 1, 1)
# Make sure the first chapter has been downloaded
self.get_verse_text(bible, book, chapter, chapter, 1, 1)
count = self.bible_db_cache[bible].get_max_bible_book_verses(
book, chapter)
return count