* src/EditPerson.py (did_data_change): Add a unicode conversion to the
surname string. svn: r1965
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user