From c2374c1ac5e21e249acadd6ee02b7424ae27ee1f Mon Sep 17 00:00:00 2001 From: Martin Hawlisch Date: Mon, 22 Aug 2005 08:36:18 +0000 Subject: [PATCH] * src/plugins/ExportVCard.py (write_person): Fix typo svn: r5118 --- gramps2/ChangeLog | 3 +++ gramps2/src/plugins/ExportVCard.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index f805d8a0d..32dabe742 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-08-22 Martin Hawlisch + * src/plugins/ExportVCard.py (write_person): Fix typo + 2005-08-21 Don Allingham * src/ImgManip.py: add support for PDF thumbnailing * src/plugins/NavWebPage.py: Always use two levels instead of diff --git a/gramps2/src/plugins/ExportVCard.py b/gramps2/src/plugins/ExportVCard.py index 75e831c46..78b36dc0f 100644 --- a/gramps2/src/plugins/ExportVCard.py +++ b/gramps2/src/plugins/ExportVCard.py @@ -204,7 +204,7 @@ class CardWriter: state = address.get_state() zip = address.get_postal_code() country = address.get_country() - if street or city or state or zip or coutry: + if street or city or state or zip or country: self.writeln("ADR:%s;%s;%s;%s;%s;%s;%s" % (postbox,ext,street,city,state,zip,country)) phone = address.get_phone()