diff --git a/ChangeLog b/ChangeLog index 952a54b0e..e3825d858 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-11-11 Jim Sack + * src/GrampsDbUtils/_WriteGedcom.py: fix #1364 s/SGLS/SLGS/ + Fixes 3.0 trunk. same issue exists in 2.2.x to be fixed next + 2007-11-11 Jim Sack * src/ArgHandler.py: remove leftovers from prior CLI crash (#1358) * src/test/gramps_cli_test.py: add test for this bug diff --git a/src/GrampsDbUtils/_WriteGedcom.py b/src/GrampsDbUtils/_WriteGedcom.py index f1d997632..5fd69b30f 100644 --- a/src/GrampsDbUtils/_WriteGedcom.py +++ b/src/GrampsDbUtils/_WriteGedcom.py @@ -88,7 +88,7 @@ LDS_ORD_NAME = { gen.lib.LdsOrd.BAPTISM : 'BAPL', gen.lib.LdsOrd.ENDOWMENT : 'ENDL', gen.lib.LdsOrd.SEAL_TO_PARENTS : 'SLGC', - gen.lib.LdsOrd.SEAL_TO_SPOUSE : 'SGLS', + gen.lib.LdsOrd.SEAL_TO_SPOUSE : 'SLGS', gen.lib.LdsOrd.CONFIRMATION : 'CONL', } @@ -598,7 +598,7 @@ class GedcomWriter(BasicUtils.UpdateCallback): def __lds_ords(self, obj, level): """ Simply loop through the list of LDS ordinances, and call the function - that write the LDS oridinance structure. + that write the LDS ordinance structure. """ for lds_ord in obj.get_lds_ord_list(): self.write_ord(lds_ord, level)