py 2 AND 3 support

Now it works for both!
This commit is contained in:
laurajauch 2018-03-08 20:13:53 -05:00 committed by GitHub
parent 87fe92cf23
commit 2b0b6da6f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
from pysword.modules import SwordModules
from past.builtins import xrange
import argparse, json
def generate_dict(source_file, bible_version):
@ -13,9 +14,9 @@ def generate_dict(source_file, bible_version):
for book in books:
chapters = []
for chapter in range(1, book.num_chapters+1):
for chapter in xrange(1, book.num_chapters+1):
verses = []
for verse in range(1, len(book.get_indicies(chapter))+1 ):
for verse in xrange(1, len(book.get_indicies(chapter))+1 ):
verses.append({
'verse': verse,
'chapter': chapter,