diff options
author | Johan Lundberg <lundberg@nordu.net> | 2014-04-03 11:07:50 +0200 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2014-04-03 11:08:09 +0200 |
commit | be303f3210b9793598692ec22ecf29c6f20f2aba (patch) | |
tree | f2566734994f58b9d01a86b5d46fdd4aeabccbe6 /meetingtools/ac | |
parent | 66fd26d39f7ff820c052803de8cd1b468b718f81 (diff) |
Added catch all error handling for content full import.
Diffstat (limited to 'meetingtools/ac')
-rw-r--r-- | meetingtools/ac/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meetingtools/ac/api.py b/meetingtools/ac/api.py index 6ec2904..5254163 100644 --- a/meetingtools/ac/api.py +++ b/meetingtools/ac/api.py @@ -153,7 +153,7 @@ class ACPClient(): url = self.url + '?' + '&'.join(u) #cache = ACPClient.CacheWrapper(get_cache('default')) cache = None - h = httplib2.Http(cache, disable_ssl_certificate_validation=True); + h = httplib2.Http(cache, disable_ssl_certificate_validation=True) logging.debug(url) resp, content = h.request(url, "GET") logging.debug(pformat(resp)) |