5
2
mirror of https://github.com/getbible/v2_builder.git synced 2024-09-29 11:59:00 +00:00

python 3 range

modified to work with python 3
This commit is contained in:
laurajauch 2018-03-08 20:08:48 -05:00 committed by GitHub
parent f96d0c50dc
commit 87fe92cf23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,9 +13,9 @@ def generate_dict(source_file, bible_version):
for book in books:
chapters = []
for chapter in xrange(1, book.num_chapters+1):
for chapter in range(1, book.num_chapters+1):
verses = []
for verse in xrange(1, len(book.get_indicies(chapter))+1 ):
for verse in range(1, len(book.get_indicies(chapter))+1 ):
verses.append({
'verse': verse,
'chapter': chapter,