Skip to content
This repository has been archived by the owner on Jun 15, 2019. It is now read-only.

Commit

Permalink
Correct comparison in rejected property
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinthehole committed Jul 17, 2013
1 parent 360a4c9 commit 994c005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacash/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def released(self):

@property
def rejected(self):
return self.recommendation == self.REJECTED
return self.recommendation == self.REJECT

@property
def order_number(self):
Expand Down

0 comments on commit 994c005

Please sign in to comment.