Skip to content

Commit

Permalink
fixed urllib3 https warning
Browse files Browse the repository at this point in the history
  • Loading branch information
walchko authored and coddingtonbear committed Dec 14, 2015
1 parent 9539a2c commit 649d883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyicloud/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class PyiCloudService(object):
pyicloud = PyiCloudService('[email protected]', 'password')
pyicloud.iphone.location()
"""
def __init__(self, apple_id, password, cookie_directory=None, verify=False):
def __init__(self, apple_id, password, cookie_directory=None, verify=True):
self.discovery = None
self.client_id = str(uuid.uuid1()).upper()
self.user = {'apple_id': apple_id, 'password': password}
Expand Down

0 comments on commit 649d883

Please sign in to comment.