From fe50ed38dba3e3a8050bb62c00d87218c4567438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 20 Apr 2011 10:39:33 +0000 Subject: [PATCH] 4455: Family Tree Maker now uses 'FTM' gedcom header svn: r17163 --- src/plugins/lib/libgedcom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/lib/libgedcom.py b/src/plugins/lib/libgedcom.py index 53c7d14e3..13085c54b 100644 --- a/src/plugins/lib/libgedcom.py +++ b/src/plugins/lib/libgedcom.py @@ -4204,7 +4204,7 @@ class GedcomParser(UpdateCallback): def __family_frel(self, line, state): """ - The _FREL key is a FTW specific extension to indicate father/child + The _FREL key is a FTW/FTM specific extension to indicate father/child relationship. n _FREL @@ -4218,7 +4218,7 @@ class GedcomParser(UpdateCallback): def __family_mrel(self, line, state): """ - The _MREL key is a FTW specific extension to indicate father/child + The _MREL key is a FTW/FTM specific extension to indicate father/child relationship. n _MREL @@ -5572,7 +5572,7 @@ class GedcomParser(UpdateCallback): @type state: CurrentState """ self.gedsource = self.gedmap.get_from_source_tag(line.data) - if line.data.strip() == "FTW": + if line.data.strip() in ["FTW", "FTM"]: self.is_ftw = True state.genby = line.data