From 0e3c3cdbdd22fedc069bb9d152c6533d13863430 Mon Sep 17 00:00:00 2001 From: kulath Date: Wed, 7 Jan 2015 17:58:41 +0000 Subject: [PATCH] 0008283: GEDCOM export does not export media attached to citations. Fix for gramps41 --- gramps/plugins/export/exportgedcom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps/plugins/export/exportgedcom.py b/gramps/plugins/export/exportgedcom.py index f51dfdd0e..848bba99e 100644 --- a/gramps/plugins/export/exportgedcom.py +++ b/gramps/plugins/export/exportgedcom.py @@ -1310,7 +1310,8 @@ class GedcomWriter(UpdateCallback): note_list = [ n.handle for n in note_list if n and n.get_type() != NoteType.SOURCE_TEXT] self._note_references(note_list, level+1) - self._photos(citation.get_media_list(), level+1) + + self._photos(citation.get_media_list(), level+1) even = None for srcattr in citation.get_attribute_list():