summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meetingtools/ac/api.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meetingtools/ac/api.py b/meetingtools/ac/api.py
index 5594d75..f416cf4 100644
--- a/meetingtools/ac/api.py
+++ b/meetingtools/ac/api.py
@@ -143,7 +143,8 @@ class ACPClient():
u.append('%s=%s' % (k,quote_plus(value.encode("utf-8"))))
url = self.url + '?' + '&'.join(u)
- cache = ACPClient.CacheWrapper(get_cache('default'))
+ #cache = ACPClient.CacheWrapper(get_cache('default'))
+ cache = None
h = httplib2.Http(cache,disable_ssl_certificate_validation=True);
logging.debug(url)
resp, content = h.request(url, "GET")