Send the same error message as forwarded by Stripe

This commit is contained in:
PCoder 2019-12-26 20:21:01 +05:30
parent 12975565a5
commit 74921fcd4a
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def handleStripeError(f):
return response
except stripe.error.InvalidRequestError as e:
logger.error(str(e))
response.update({'error': "Invalid parameters"})
response.update({'error': str(e)})
return response
except stripe.error.AuthenticationError as e:
# Authentication with Stripe's API failed