Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Oct 27, 2009
1 parent d61bb94 commit e96ddb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion friends/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class FriendshipInvitationManager(models.Manager):
def invitations(self, *args, **kwargs):
return self.filter(*args, **kwargs).exclude(status__in=[6, 8])

def create_frienship_request(self, from_user, to_user, msg=None):
def create_friendship_request(self, from_user, to_user, msg=None):
inv = self.create(from_usre=from_user, to_user=to_user,
message=msg or "", status=2)
if notification:
Expand Down

0 comments on commit e96ddb2

Please sign in to comment.