aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy
diff options
context:
space:
mode:
authorThomas Kriechbaumer <Kriechi@users.noreply.github.com>2018-10-10 17:03:27 +0200
committerGitHub <noreply@github.com>2018-10-10 17:03:27 +0200
commiteace39f6705c41775a227d96758c82a1b36fe28e (patch)
tree7d110bf2ce04b6bd21d0073987e535d3f0e18c3a /mitmproxy
parentc30b46147e965498df5ef6f926fb4f1d96d4fca8 (diff)
parent769aad0515a3c2654573ca8cc84bd814456ead77 (diff)
downloadmitmproxy-eace39f6705c41775a227d96758c82a1b36fe28e.tar.gz
mitmproxy-eace39f6705c41775a227d96758c82a1b36fe28e.tar.bz2
mitmproxy-eace39f6705c41775a227d96758c82a1b36fe28e.zip
Merge pull request #3334 from artnc/patch-1
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: