From 649d88316c9014041ab5b58005d4ac9b2233af4c Mon Sep 17 00:00:00 2001 From: kevin walchko Date: Sun, 15 Feb 2015 23:13:27 -0700 Subject: [PATCH] fixed urllib3 https warning --- pyicloud/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyicloud/base.py b/pyicloud/base.py index 107e523..a774c07 100644 --- a/pyicloud/base.py +++ b/pyicloud/base.py @@ -32,7 +32,7 @@ class PyiCloudService(object): pyicloud = PyiCloudService('username@apple.com', '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}