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 /python2 | |
| parent | 6fa3cf2095e3ae2b3e7e43280a3906b0e6a6268f (diff) | |
| download | httplib2-a4daf7a77c6f7da5b2f08ea07b20fb2717366819.tar.gz | |
Fixes issue 97.
Diffstat (limited to 'python2')
| -rw-r--r-- | python2/httplib2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py index 62376e1..9b7e0af 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -392,7 +392,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() |
