Show only error message

This commit is contained in:
PCoder 2019-12-26 20:25:07 +05:30
parent 74921fcd4a
commit c142d743d1
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': str(e)})
response.update({'error': str(e._message)})
return response
except stripe.error.AuthenticationError as e:
# Authentication with Stripe's API failed