correct indent

This commit is contained in:
Armin Köhler 2011-05-29 21:32:37 +02:00
parent 6ad8129363
commit a8ea8d668a
1 changed files with 3 additions and 3 deletions

View File

@ -219,9 +219,9 @@ class BibleManager(object):
log.debug(u'BibleManager.get_books("%s")', bible)
return [
{
u'name': book.name,
u'book_reference_id': book.book_reference_id,
u'chapters': self.db_cache[bible].get_chapter_count(book)
u'name': book.name,
u'book_reference_id': book.book_reference_id,
u'chapters': self.db_cache[bible].get_chapter_count(book)
}
for book in self.db_cache[bible].get_books()
]