braintree_django
braintree_django copied to clipboard
Braintree Django Module
All your TR fields on the form class are singletons. This is a dangerous security risk. Please correct this and fix it in your documentation. I will try and submit...
Should be: http://www.braintreepaymentsolutions.com/docs/python/transactions/create_tr
In the docstring for forms.TransactionForm: ``` form.tr_protected['options']['submit_for_settlement'] = True ``` should be: ``` form.tr_protected['transaction']['options']['submit_for_settlement'] = True ```
Fix is to just hardcode VERSION in setup.py or make it work around instances where that env var isn't defined in the environment.