diff options
author | Chris Little <chrislit@crosswire.org> | 2012-08-12 10:27:15 +0000 |
---|---|---|
committer | Chris Little <chrislit@crosswire.org> | 2012-08-12 10:27:15 +0000 |
commit | f65efe2e27a0950a79d8073efd6da850a9a0aa5e (patch) | |
tree | c831b30ab21ab1b63a052d5229f9e6a1a81daee3 | |
parent | 9087c6748c8c0398402db372dcfdf45308ebef76 (diff) | |
download | sword-tools-f65efe2e27a0950a79d8073efd6da850a9a0aa5e.tar.gz |
typo
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@381 07627401-56e2-0310-80f4-f8cd0041bdcd
-rwxr-xr-x | modules/python/usfm2osis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/python/usfm2osis.py b/modules/python/usfm2osis.py index d855593..1ce68a3 100755 --- a/modules/python/usfm2osis.py +++ b/modules/python/usfm2osis.py @@ -358,7 +358,7 @@ def convertToOSIS(sFile): osis = re.sub(r'\\toc1\b\s+(.+)\s*'+'\n', r'<milestone type="x-usfm-toc1" n="\1"/>'+'\n', osis) # \toc2_text... - osis = re.sub(r'\\toc2\b\s+(.+)\s*'+'\n', r'<milestone type="x-utfm-toc2" n="\1"/>'+'\n', osis) + osis = re.sub(r'\\toc2\b\s+(.+)\s*'+'\n', r'<milestone type="x-usfm-toc2" n="\1"/>'+'\n', osis) # \toc3_text... locBook = re.search(r'\\toc3\b\s+(.+)\s*'+'\n', osis) |