summaryrefslogtreecommitdiff
path: root/python3/httplib2
diff options
context:
space:
mode:
authorJoe Gregorio <jcgregorio@google.com>2011-02-14 15:36:15 -0500
committerJoe Gregorio <jcgregorio@google.com>2011-02-14 15:36:15 -0500
commita4daf7a77c6f7da5b2f08ea07b20fb2717366819 (patch)
treee0e6e50cb420ad1b2377f0c4e7ee0824317f3833 /python3/httplib2
parent6fa3cf2095e3ae2b3e7e43280a3906b0e6a6268f (diff)
downloadhttplib2-a4daf7a77c6f7da5b2f08ea07b20fb2717366819.tar.gz
Fixes issue 97.
Diffstat (limited to 'python3/httplib2')
-rw-r--r--python3/httplib2/__init__.py2
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()