Name error --> transaction should be t

pull/1/head
Raymond Yee 2012-05-29 11:41:36 -07:00
parent 4e81f743b4
commit 88d6955685
1 changed files with 2 additions and 2 deletions

View File

@ -627,9 +627,9 @@ class PaymentManager( object ):
# when the transaction is initiated risks sending notifications on transactions
# that for whatever reason fail. will need other housekeeping to handle those.
if modification==True:
pledge_modified.send(sender=self, transaction=transaction, status="increased")
pledge_modified.send(sender=self, transaction=t, status="increased")
else:
pledge_created.send(sender=self, transaction=transaction)
pledge_created.send(sender=self, transaction=t)
return t, url