Skip to content

Commit

Permalink
Fix #313
Browse files Browse the repository at this point in the history
  • Loading branch information
aebruno committed Jul 20, 2021
1 parent 0ade7eb commit b1bf1c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coldfront/core/user/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def search_a_user(self, user_search_string=None, search_by='all_fields'):
elif user_search_string and search_by == 'username_only':
entries = User.objects.filter(username=user_search_string, is_active=True)
else:
User.objects.all()[:size_limit]
entries = User.objects.all()[:size_limit]

users = []
for idx, user in enumerate(entries, 1):
Expand Down

0 comments on commit b1bf1c3

Please sign in to comment.