Call delete on Customer object

This commit is contained in:
PCoder 2019-04-29 00:17:59 +02:00
parent a67284a89d
commit 0352096fa7
1 changed files with 2 additions and 2 deletions

View File

@ -67,10 +67,10 @@ class Command(BaseCommand):
"not exist".format(email))
sys.exit(1)
stripe_customer = cus_user.stripecustomer
del_response = stripe.Customer.delete(
c = stripe.Customer.retrieve(
stripe_customer.stripe_id
)
if del_response.deleted:
if c.delete():
logger.debug(
"StripeCustomer {} associated with {} deleted"
"".format(stripe_customer.stripe_id, email)