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

Commit

Permalink
Correct bug in __unicode__ for FraudResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinthehole committed Jul 10, 2013
1 parent 764e257 commit 99dbfa5
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 @@ -88,7 +88,7 @@ class FraudResponse(models.Model):
date_created = models.DateTimeField(auto_now_add=True)

def __unicode__(self):
return u"<t3m %s (score: %s, recommendation)>" % (
return u"<t3m %s (score: %s, recommendation: %s)>" % (
self.t3m_id, self.score, self.recommendation)

@classmethod
Expand Down

0 comments on commit 99dbfa5

Please sign in to comment.