Skip to content

Commit

Permalink
fixed typo that prevented otherconnect notices working on join invita…
Browse files Browse the repository at this point in the history
…tion accept

git-svn-id: http://django-friends.googlecode.com/svn/trunk@53 f9456ae0-1038-0410-abc2-2f1ed958ef3d
  • Loading branch information
jtauber committed Oct 17, 2008
1 parent 9fe60f1 commit c464059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion friendsdev/friends/models.py
Expand Up @@ -147,7 +147,7 @@ def accept(self, new_user):
friends = []
for user in friend_set_for(new_user) | friend_set_for(self.from_user):
if user != new_user and user != self.from_user:
friends.append(users)
friends.append(user)
notification.send(friends, "friends_otherconnect", {"invitation": self, "to_user": new_user})

class FriendshipInvitation(models.Model):
Expand Down

0 comments on commit c464059

Please sign in to comment.