Author: jtauber
Date: Fri Oct 17 07:04:00 2008
New Revision: 53
Modified:
trunk/friendsdev/friends/models.py
Log:
fixed typo that prevented otherconnect notices working on join invitation
accept
Modified: trunk/friendsdev/friends/models.py
==============================================================================
--- trunk/friendsdev/friends/models.py (original)
+++ trunk/friendsdev/friends/models.py Fri Oct 17 07:04:00 2008
@@ -147,7 +147,7 @@
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):
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---