aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools/console/commands.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2019-11-18 22:03:51 +0100
committerMaximilian Hils <git@maximilianhils.com>2019-11-18 22:03:51 +0100
commit74f5fa6a7736f116416c242b159e6b0525e6fe5b (patch)
tree0c90e441aea082e91ee9b864f3c98363e1232927 /mitmproxy/tools/console/commands.py
parent7bf06f8ae04697305731ec89a43ebea6da4376b8 (diff)
downloadmitmproxy-74f5fa6a7736f116416c242b159e6b0525e6fe5b.tar.gz
mitmproxy-74f5fa6a7736f116416c242b159e6b0525e6fe5b.tar.bz2
mitmproxy-74f5fa6a7736f116416c242b159e6b0525e6fe5b.zip
wip
Diffstat (limited to 'mitmproxy/tools/console/commands.py')
-rw-r--r--mitmproxy/tools/console/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/commands.py b/mitmproxy/tools/console/commands.py
index d35a6b8a..26a99b14 100644
--- a/mitmproxy/tools/console/commands.py
+++ b/mitmproxy/tools/console/commands.py
@@ -25,7 +25,7 @@ class CommandItem(urwid.WidgetWrap):
if self.cmd.parameters:
parts += [
("text", " "),
- ("text", " ".join(name for name, t in self.cmd.parameters)),
+ ("text", " ".join(str(param) for param in self.cmd.parameters)),
]
if self.cmd.return_type:
parts += [