1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00
This commit is contained in:
Kevin McCarthy
2014-04-23 21:24:12 -10:00
parent e002aab999
commit 582b8eab51
3 changed files with 4 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ def get_headers(response):
if six.PY3:
header_list = response.msg._headers
return [b': '.join((k.encode('utf-8'), v.encode('utf-8'))) + b'\r\n'
for k, v in header_list]
for k, v in header_list]
else:
return response.msg.headers