From bfa7c0c9f4fcd91f866710c0f68b215b52907eb2 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sat, 13 May 2023 15:10:20 +0100 Subject: [PATCH] Fix export where private citations are excluded --- gramps/plugins/export/exportgedcom.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gramps/plugins/export/exportgedcom.py b/gramps/plugins/export/exportgedcom.py index 0615ca972..a9596a88b 100644 --- a/gramps/plugins/export/exportgedcom.py +++ b/gramps/plugins/export/exportgedcom.py @@ -1343,6 +1343,8 @@ class GedcomWriter(UpdateCallback): """ citation = self.dbase.get_citation_from_handle(citation_handle) + if citation is None: # removed by proxy + return src_handle = citation.get_reference_handle() if src_handle is None: