Skip to content

Commit

Permalink
Fix to use super in LinkCol.get_attr_list
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdog committed Jan 9, 2017
1 parent 3478495 commit a02297c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_table/columns.py
Expand Up @@ -217,7 +217,7 @@ def url_kwargs(self, item):
for k, v in self._url_kwargs.items()}

def get_attr_list(self, attr):
return Col.get_attr_list(self, None)
return super(LinkCol, self).get_attr_list(None)

def text(self, item, attr_list):
if attr_list:
Expand Down

0 comments on commit a02297c

Please sign in to comment.