Skip to content

Commit

Permalink
fix from #40
Browse files Browse the repository at this point in the history
  • Loading branch information
swayf committed Sep 6, 2018
1 parent 51da685 commit 7770063
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions proxmoxer/backends/https.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def request(self, method, url, params=None, data=None, headers=None, cookies=Non
timeout=None, allow_redirects=True, proxies=None, hooks=None, stream=None, verify=None, cert=None,
serializer=None):

# take set verify flag from session request does not have this parameter explicitly
if verify is None:
verify = self.verify

#filter out streams
files = files or {}
data = data or {}
Expand Down

0 comments on commit 7770063

Please sign in to comment.