From c25d544828789dab1b35fbfcf511349c472c6359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 2 Oct 2013 08:17:21 +0000 Subject: [PATCH] 7072: fix level for citationref into person svn: r23239 --- gramps/plugins/export/exportxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/export/exportxml.py b/gramps/plugins/export/exportxml.py index 958d500ed..63e95cdf5 100644 --- a/gramps/plugins/export/exportxml.py +++ b/gramps/plugins/export/exportxml.py @@ -539,7 +539,7 @@ class GrampsXmlWriter(UpdateCallback): self.write_note_list(person.get_note_list(),index+1) for citation_handle in person.get_citation_list(): - self.write_ref("citationref", citation_handle, index+2) + self.write_ref("citationref", citation_handle, index+1) for tag_handle in person.get_tag_list(): self.write_ref("tagref", tag_handle, index+1)