Updated links II.

This commit is contained in:
Jakub Roztocil
2015-07-03 18:55:45 +02:00
parent fa4bd033ef
commit 2b51cb6687
21 changed files with 50 additions and 50 deletions

View File

@ -58,7 +58,7 @@ def dump_request(kwargs):
def encode_headers(headers):
# This allows for unicode headers which is non-standard but practical.
# See: https://github.com/jakubroztocil/httpie/issues/212
# See: https://github.com/jkbrzt/httpie/issues/212
return dict(
(name, value.encode('utf8') if isinstance(value, str) else value)
for name, value in headers.items()