diff options
author | Joe Gregorio <jcgregorio@google.com> | 2011-02-14 15:36:15 -0500 |
---|---|---|
committer | Joe Gregorio <jcgregorio@google.com> | 2011-02-14 15:36:15 -0500 |
commit | a4daf7a77c6f7da5b2f08ea07b20fb2717366819 (patch) | |
tree | e0e6e50cb420ad1b2377f0c4e7ee0824317f3833 /python3/httplib2 | |
parent | 6fa3cf2095e3ae2b3e7e43280a3906b0e6a6268f (diff) | |
download | httplib2-a4daf7a77c6f7da5b2f08ea07b20fb2717366819.tar.gz |
Fixes issue 97.
Diffstat (limited to 'python3/httplib2')
-rw-r--r-- | python3/httplib2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py index 1e915ce..fb89f74 100644 --- a/python3/httplib2/__init__.py +++ b/python3/httplib2/__init__.py @@ -358,7 +358,7 @@ def _updateCache(request_headers, response_headers, content, cache, cachekey): if status == 304: status = 200 - status_header = 'status: %d\r\n' % response_headers.status + status_header = 'status: %d\r\n' % status header_str = info.as_string() |