Skip to content

Commit

Permalink
9405: Narrated Web report - Individual sort order not correct on the …
Browse files Browse the repository at this point in the history
…Surnames tab
  • Loading branch information
SNoiraud committed Apr 24, 2016
1 parent 74c32fc commit 13b4f93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gramps/plugins/webreport/narrativeweb.py
Expand Up @@ -2973,7 +2973,8 @@ def __init__(self, report, title, surname, ppl_handle_list):
tbody = Html("tbody")
table += tbody

for person_handle in ppl_handle_list:
for person_handle in sorted(ppl_handle_list,
key=lambda x: sort_on_name_and_grampsid(x, self.dbase_)):

person = self.dbase_.get_person_from_handle(person_handle)
if person.get_change_time() > ldatec: ldatec = person.get_change_time()
Expand Down

0 comments on commit 13b4f93

Please sign in to comment.