diff --git a/httpie/pretty.py b/httpie/pretty.py index 8c6bdbee..b3dd716d 100644 --- a/httpie/pretty.py +++ b/httpie/pretty.py @@ -42,7 +42,8 @@ class PrettyHttp(object): try: # Indent and sort the JSON data. content = json.dumps(json.loads(content), - sort_keys=True, indent=4) + sort_keys=True, indent=4, + ensure_ascii=False) except: pass