From c7f4a540b15b4e1e6881ca5bce5b8a7c8e3a31c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 2 Oct 2013 08:10:07 +0000 Subject: [PATCH] 7072: fix level for citationref into person svn: r23237 --- 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 a34b9d46d..eeda3e15f 100644 --- a/gramps/plugins/export/exportxml.py +++ b/gramps/plugins/export/exportxml.py @@ -540,7 +540,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)