python3 bytes-string mismatch with ICU installed

This commit is contained in:
Paul Franklin 2014-08-22 18:18:38 -07:00
parent 462897bf44
commit 60ca25deee

View File

@ -152,7 +152,7 @@ class Sort(object):
date1 = Date() date1 = Date()
dsv1 = date1.get_sort_value() dsv1 = date1.get_sort_value()
return "%08d" % dsv1 + self.by_last_name_key(first_id) return "%08d" % dsv1 + str(self.by_last_name_key(first_id))
## def by_date(self, a_id, b_id): ## def by_date(self, a_id, b_id):
## """Sort routine for comparing two events by their dates. """ ## """Sort routine for comparing two events by their dates. """