Skip to content

Commit

Permalink
fix default for BiblicalTermsListSetting (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshannon-sil authored Oct 8, 2024
1 parent 7a2123f commit e0e3f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion machine/corpora/paratext_project_settings_parser_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def parse(self) -> ParatextProjectSettings:
post_part = naming_elem.get("PostPart")
if post_part:
suffix = post_part
biblical_terms_list_setting = settings_tree.getroot().findtext("BiblicalTermsListSetting", "")
biblical_terms_list_setting = settings_tree.getroot().findtext("BiblicalTermsListSetting")
if biblical_terms_list_setting is None:
# Default to Major::BiblicalTerms.xml to mirror Paratext behavior
biblical_terms_list_setting = "Major::BiblicalTerms.xml"
Expand Down

0 comments on commit e0e3f08

Please sign in to comment.