diff options
author | Art Chaidarun <artchaidarun@gmail.com> | 2018-09-23 00:20:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 00:20:34 -0400 |
commit | 769aad0515a3c2654573ca8cc84bd814456ead77 (patch) | |
tree | 317eb40342a33d52765be3d2c9145cc3cf9768d6 | |
parent | 4be387d654ef2877fc535c6cb83ff1f32645fd81 (diff) | |
download | mitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.tar.gz mitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.tar.bz2 mitmproxy-769aad0515a3c2654573ca8cc84bd814456ead77.zip |
Fix error message for failure to start editor
-rw-r--r-- | mitmproxy/tools/console/master.py | 2 |
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: |