From a016457f5a1773e1b40b16afac8bc7168dd10aad Mon Sep 17 00:00:00 2001 From: prculley Date: Thu, 7 Jul 2016 12:06:44 -0500 Subject: [PATCH] Fix Bug 9569 Vcard export order is not consistent --- gramps/plugins/export/exportvcard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/export/exportvcard.py b/gramps/plugins/export/exportvcard.py index 185dae400..54bfc59c1 100644 --- a/gramps/plugins/export/exportvcard.py +++ b/gramps/plugins/export/exportvcard.py @@ -154,7 +154,7 @@ class VCardWriter: self.count = 0 self.oldval = 0 self.total = self.db.get_number_of_people() - for key in self.db.iter_person_handles(): + for key in sorted(list(self.db.iter_person_handles())): self.write_person(key) self.update() return True