Commit fd7bc7d3540aa3bf38aa4f9d8073d0df18b7572f
Exists in
master
and in
39 other branches
Merge branch 'master' of github.com:TracyWebTech/colab
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/accounts/search_indexes.py
@@ -30,8 +30,8 @@ class UserIndex(indexes.SearchIndex, indexes.Indexable): | @@ -30,8 +30,8 @@ class UserIndex(indexes.SearchIndex, indexes.Indexable): | ||
30 | return 'date_joined' | 30 | return 'date_joined' |
31 | 31 | ||
32 | def prepare_description(self, obj): | 32 | def prepare_description(self, obj): |
33 | - return u'{}\n{}\n{}\n{}\n{}\n{}'.format( | ||
34 | - obj.institution, obj.role, obj.username, obj.get_full_name(), | 33 | + return u'{}\n{}\n{}\n{}'.format( |
34 | + obj.institution, obj.role, obj.username, obj.get_full_name() | ||
35 | ) | 35 | ) |
36 | 36 | ||
37 | def prepare_icon_name(self, obj): | 37 | def prepare_icon_name(self, obj): |