Skip to content

Commit

Permalink
Merge pull request psf#224 from pigna90/set-verify-to-true
Browse files Browse the repository at this point in the history
Set verify default value to True
  • Loading branch information
kennethreitz authored Sep 21, 2018
2 parents aca88e4 + 4f4cfc0 commit 47b2ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requests_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ class BaseSession(requests.Session):
amongst other things.
"""

def __init__(self, mock_browser : bool = True, verify : bool = False,
def __init__(self, mock_browser : bool = True, verify : bool = True,
browser_args : list = ['--no-sandbox']):
super().__init__()

Expand Down

0 comments on commit 47b2ad8

Please sign in to comment.