aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy
diff options
context:
space:
mode:
authorArt Chaidarun <artchaidarun@gmail.com>2018-09-23 00:20:34 -0400
committerGitHub <noreply@github.com>2018-09-23 00:20:34 -0400
commit769aad0515a3c2654573ca8cc84bd814456ead77 (patch)
tree317eb40342a33d52765be3d2c9145cc3cf9768d6 /mitmproxy
parent4be387d654ef2877fc535c6cb83ff1f32645fd81 (diff)
downloadmitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.tar.gz
mitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.tar.bz2
mitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.zip
Fix error message for failure to start editor
Diffstat (limited to 'mitmproxy')
-rw-r--r--mitmproxy/tools/console/master.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/master.py b/mitmproxy/tools/console/master.py
index 1bc79e5c..dd15a2f5 100644
--- a/mitmproxy/tools/console/master.py
+++ b/mitmproxy/tools/console/master.py
@@ -128,7 +128,7 @@ class ConsoleMaster(master.Master):
subprocess.call(cmd)
except:
signals.status_message.send(
- message="Can't start editor: %s" % " ".join(c)
+ message="Can't start editor: %s" % c
)
else:
with open(name, "r" if text else "rb") as f: