diff --git a/utils/stripe_utils.py b/utils/stripe_utils.py index 5299e4d5..b9884ebf 100644 --- a/utils/stripe_utils.py +++ b/utils/stripe_utils.py @@ -139,8 +139,8 @@ class StripeUtils(object): return customer @handleStripeError - def get_customer(self, id): - customer = stripe.Customer.retrieve(id) + def get_customer(self, stripe_api_cus_id): + customer = stripe.Customer.retrieve(stripe_api_cus_id) # data = customer.get('response_object') return customer