From ca9de786fd7ed3edf7a485f7c019ac83d5abfc7f Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 4 Jul 2016 15:07:01 -0700 Subject: [PATCH] minor fix --- mitmproxy/console/flowview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/console/flowview.py b/mitmproxy/console/flowview.py index c4bb6c408..d994e6703 100644 --- a/mitmproxy/console/flowview.py +++ b/mitmproxy/console/flowview.py @@ -226,7 +226,7 @@ class FlowView(tabs.Tabs): description = description.replace("Raw", "Couldn't parse: falling back to Raw") if enc: - description = " ".join(enc, description) + description = " ".join([enc, description]) # Give hint that you have to tab for the response. if description == "No content" and isinstance(message, models.HTTPRequest):