Call delete on Customer object

This commit is contained in:
PCoder 2019-04-29 00:17:59 +02:00
parent a67284a89d
commit 0352096fa7

View file

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