Skip to content

Commit

Permalink
changes for PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jdungan committed Oct 30, 2016
1 parent d3a932d commit a99d85d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion payments/management/commands/check_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class Command(BaseCommand):

def handle(self, *args, **options):
accounts = StripeAccount.objects.filter()
accounts = StripeAccount.objects.all()
for account in accounts:
try:
stripe_account = stripe.Account.retrieve(account.account_id)
Expand Down
2 changes: 1 addition & 1 deletion payments/templates/email/need_validation.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Thanks for using codesy. We need some more information to keep transferring money to your bank account.

As a reminder, codesy.io only provides this information to our payment provider and does not stored it.
As a reminder, codesy.io only passes this information to Stripe, our payment provider, and we do not stored it.

{% if expiration %}
Please visit https://codesy.io/payments/identity to update before {{expiration}} to keep the transfers coming.
Expand Down
2 changes: 1 addition & 1 deletion payments/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def refund(offer):
)
if refund:
offer.refund_id = refund.id
offer.save()
except Exception as e:
print e.message
offer.error_message = e.message
offer.save()
return offer.error_message == u''


Expand Down

0 comments on commit a99d85d

Please sign in to comment.