GearPlug/sugarcrm-python

Verify parameter

Bachboi opened this issue · 1 comments

Hi.
Can you change client.py line 56

"return self._parse(client.post(self.url + endpoint, data=data, verify=True, **kwargs))"

to

"return self._parse(client.post(self.url + endpoint, data=data, verify=self.verify, **kwargs))"

Verify is defaulted to True in Client constructor, but should be passed if set to False.

This has been fixed. Thanks for your reporting it!