Skip to content

Commit

Permalink
Typo - instead of =
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebarnard1 committed May 21, 2015
1 parent 092f348 commit a245bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/o2m/basic_client/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def get_friends_included(self):

def get_context_data(self, **kwargs):
context = super(FriendView, self).get_context_data(**kwargs)
context.update(friend = self.friend, non_friend = (self.friend.password == 'NOTFRIENDS'), request_sent = (self.friend.password == 'REQUESTSENT'), request_received - (self.friend.password == 'REQUESTRECEIVED'))
context.update(friend = self.friend, non_friend = (self.friend.password == 'NOTFRIENDS'), request_sent = (self.friend.password == 'REQUESTSENT'), request_received = (self.friend.password == 'REQUESTRECEIVED'))

return context

Expand Down

0 comments on commit a245bbe

Please sign in to comment.