summaryrefslogtreecommitdiff
path: root/python2/httplib2
diff options
context:
space:
mode:
authorJoe Gregorio <jcgregorio@google.com>2011-06-02 14:54:51 -0400
committerJoe Gregorio <jcgregorio@google.com>2011-06-02 14:54:51 -0400
commitffc751211c03856d8dda0837394c495a736f6887 (patch)
tree8bdd4d2828b7daaa9b0179948fadd3f6e9cdf1fd /python2/httplib2
parent6dd1d614f305cca076de724634f1bdadf1cae75d (diff)
downloadhttplib2-ffc751211c03856d8dda0837394c495a736f6887.tar.gz
Better fix for https on app engine
Diffstat (limited to 'python2/httplib2')
-rw-r--r--python2/httplib2/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 0fec437..95ab99e 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -883,11 +883,11 @@ try:
pass
- class AppEngineHttpsConnection(object):
+ class AppEngineHttpsConnection(AppEngineHttpConnection):
"""Same as AppEngineHttpConnection, but for HTTPS URIs."""
def __init__(self, host, port=None, key_file=None, cert_file=None,
strict=None, timeout=None, proxy_info=None):
- AppEngineHttpsConnection.__init__(self, host, port, key_file, cert_file,
+ AppEngineHttpConnection.__init__(self, host, port, key_file, cert_file,
strict, timeout, proxy_info)
self.scheme = 'https'