aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/command.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2017-12-16 10:56:31 +1300
committerAldo Cortesi <aldo@corte.si>2017-12-17 10:11:02 +1300
commit2649e576910b4a90b6a50db3612f1a2b4c6d9f1a (patch)
tree63c9cd76715175675c1b43d6bbaf421e8a1763d6 /mitmproxy/command.py
parentcd913d598da421b4c4e264e029be5f13e3e009bb (diff)
downloadmitmproxy-2649e576910b4a90b6a50db3612f1a2b4c6d9f1a.tar.gz
mitmproxy-2649e576910b4a90b6a50db3612f1a2b4c6d9f1a.tar.bz2
mitmproxy-2649e576910b4a90b6a50db3612f1a2b4c6d9f1a.zip
minor: fix key bindings, adjust flow command presentation
Fixes #2681
Diffstat (limited to 'mitmproxy/command.py')
-rw-r--r--mitmproxy/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index 7d7fa735..b3c8eb22 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -92,7 +92,7 @@ def typename(t: type, ret: bool) -> str:
if isinstance(t, Choice):
return "choice"
elif t == typing.Sequence[flow.Flow]:
- return "[flow]" if ret else "flowspec"
+ return "[flow]"
elif t == typing.Sequence[str]:
return "[str]"
elif t == typing.Sequence[Cut]: