* src/EditPerson.py (did_data_change): Add a unicode conversion to the

surname string.


svn: r1965
This commit is contained in:
Alex Roitman
2003-08-07 04:38:06 +00:00
parent 3a7293dd47
commit f96554424a
2 changed files with 3 additions and 1 deletions

View File

@@ -919,7 +919,7 @@ class EditPerson:
def did_data_change(self):
"""Check to see if any of the data has changed from the
original record"""
surname = self.surname_field.get_text()
surname = unicode(self.surname_field.get_text())
if GrampsCfg.capitalize:
surname = surname.upper()