diff options
-rwxr-xr-x | versification/av11n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/versification/av11n.py b/versification/av11n.py index 54347a8..c464fd9 100755 --- a/versification/av11n.py +++ b/versification/av11n.py @@ -69,7 +69,7 @@ for v11n in av11ns: while key.popError() == '\x00': skey = key.getOSISRef() # Assume we enter the NT when we hit Matthew - if not inNT and re.match('^Matt', skey): + if not inNT and skey.startswith('Matt'): inNT = True if inNT: ntkeyList.append(skey) |