Skip to content

Commit

Permalink
mistake on backport
Browse files Browse the repository at this point in the history
forgot the last column on stats_list
  • Loading branch information
romjerome authored Sep 21, 2019
1 parent 72ccd82 commit e55a072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AssociationsTool/associationstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self, dbstate, user, options_class, name, callback=None):
name2 = name_displayer.display(person2)
rel = relationship.get_one_relationship(
dbstate.db, person2, person)
stats_list.append((name1, value, name2))
stats_list.append((name1, value, name2, rel))

if uistate:
titles = [
Expand Down

0 comments on commit e55a072

Please sign in to comment.