I am trying to integrate django-paypal payment in my app but I keep getting this error even though I am using the latest version.
Please use initial['return'] instead""", DeprecationWarning)
DeprecationWarning: The use of the initial['return_url'] is Deprecated.
Please use initial['return'] instead
This happens after the call to PayPalPaymentsForm
form = PayPalPaymentsForm(initial=paypal_dict, button_type="subscribe")
Is there any fix for this ?
Just do what it says, change that
return_url
to justreturn
.You can reveal that from the related code: