From b899935d54ff97e402a93f117735042abe80597c Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Fri, 22 Aug 2014 18:16:40 -0700 Subject: [PATCH] python3 bytes-string mismatch with ICU installed --- gramps/gen/sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/sort.py b/gramps/gen/sort.py index 2789aba23..56e697681 100644 --- a/gramps/gen/sort.py +++ b/gramps/gen/sort.py @@ -150,7 +150,7 @@ class Sort(object): date1 = Date() 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): ## """Sort routine for comparing two events by their dates. """