diff --git a/linkture.py b/linkture.py index df0b270..66e7813 100755 --- a/linkture.py +++ b/linkture.py @@ -475,8 +475,7 @@ def process_verses(chunk, book, multi): def r(match): scripture = match.group(1).strip('}{') - _, bk_name, tr_name, bk_num, rest, last = scripture.split('|') - print(bk_name,tr_name) + _, _, tr_name, bk_num, rest, last = scripture.split('|') bk_num = int(bk_num) last = int(last) if rest == '': # whole book diff --git a/setup.py b/setup.py index 8747ef9..9e95544 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="linkture", - version="2.0.1", + version="2.0.2", author="Eryk J.", url="https://github.com/erykjj/linkture",