Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkiro authored and dianaboiangiu committed Mar 13, 2020
1 parent 1474602 commit cdf39db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notifications/management/commands/fetch_ecr.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def fetch_companies(self, registry):
unique_list.update(user["email"] for user in item["users"])

people = set()
people.update(set(Person.objects.filter(email_in=unique_list)))
people.update(set(Person.objects.filter(email__in=unique_list)))
people.update(set(Person.objects.filter(username__in=unique_list)))
self.set_current_user_true(company, people)
company_count += 1
Expand Down

0 comments on commit cdf39db

Please sign in to comment.