0008283: GEDCOM export does not export media attached to citations. Fix

for gramps41
This commit is contained in:
kulath 2015-01-07 17:58:41 +00:00
parent bff873f174
commit 0e3c3cdbdd

View File

@ -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():