diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-01-21 12:43:00 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-01-21 12:43:00 +1300 |
commit | d5e3722c97c2094032fe02095c3b8f7cb4df87c3 (patch) | |
tree | 457bc724192c9eae0900aa2e13a09e9d3300d266 /libmproxy/console.py | |
parent | 2a09cad420f2d74246deda7c48552b089714a0b6 (diff) | |
download | mitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.tar.gz mitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.tar.bz2 mitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.zip |
Fix an issue caused by some editors when editing a request/response body.
Many editors make it hard save a file without a terminating newline on the last
line. When editing message bodies, this can cause problems. For now, I just
strip the newlines off the end of the body when we return from an editor.
Diffstat (limited to 'libmproxy/console.py')
-rw-r--r-- | libmproxy/console.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmproxy/console.py b/libmproxy/console.py index fb1a2ed0..3e00249d 100644 --- a/libmproxy/console.py +++ b/libmproxy/console.py @@ -454,7 +454,8 @@ class ConnectionView(WWrap): self.flow.backup() if part == "b": - conn.content = self._spawn_editor(conn.content or "") + c = self._spawn_editor(conn.content or "") + conn.content = c.rstrip("\n") elif part == "h": headertext = self._spawn_editor(repr(conn.headers)) headers = flow.Headers() |