better to not have logging of tokens

pull/1/head
eric 2012-10-13 00:48:46 -04:00
parent f83ff09d05
commit 2ae6942f4f
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class Transaction(models.Model):
super(Transaction, self).save(*args, **kwargs) # Call the "real" save() method.
def __unicode__(self):
return u"-- Transaction:\n \tstatus: %s\n \t amount: %s\n \treference: %s\n \terror: %s\n" % (self.status, str(self.amount), self.preapproval_key, self.error)
return u"-- Transaction:\n \tstatus: %s\n \t amount: %s\n \treference: %s\n \terror: %s\n" % (self.status, str(self.amount), self.error)
def create_receivers(self, receiver_list):