* src/plugins/ExportVCard.py (write_person): Fix typo

svn: r5118
This commit is contained in:
Martin Hawlisch 2005-08-22 08:36:18 +00:00
parent 37394a76ae
commit c2374c1ac5
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2005-08-22 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/plugins/ExportVCard.py (write_person): Fix typo
2005-08-21 Don Allingham <don@gramps-project.org>
* src/ImgManip.py: add support for PDF thumbnailing
* src/plugins/NavWebPage.py: Always use two levels instead of

View File

@ -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()