diff options
author | Itai Sadan <itaisod@gmail.com> | 2020-01-17 16:26:59 +0200 |
---|---|---|
committer | Itai Sadan <itaisod@gmail.com> | 2020-01-17 16:26:59 +0200 |
commit | f2c0f598b5224f8e3fbe94dc5817ab861b0a8438 (patch) | |
tree | 6114b474d8548e1af2c7ba1fdfb61b43ef1e9819 | |
parent | 825bc9aa47d63876d81b6cf25817d1669d33cfe8 (diff) | |
download | mitmproxy-f2c0f598b5224f8e3fbe94dc5817ab861b0a8438.tar.gz mitmproxy-f2c0f598b5224f8e3fbe94dc5817ab861b0a8438.tar.bz2 mitmproxy-f2c0f598b5224f8e3fbe94dc5817ab861b0a8438.zip |
Replace tabs with spaces in error
because the event log replaces them with question marks
-rw-r--r-- | mitmproxy/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py index 48f9051e..341a1401 100644 --- a/mitmproxy/command.py +++ b/mitmproxy/command.py @@ -103,7 +103,7 @@ class Command: except TypeError: expected = f'Expected: {str(self.signature.parameters)}' received = f'Received: {str(args)}' - raise exceptions.CommandError(f"Command argument mismatch: \n\t{expected}\n\t{received}") + raise exceptions.CommandError(f"Command argument mismatch: \n {expected}\n {received}") for name, value in bound_arguments.arguments.items(): convert_to = self.signature.parameters[name].annotation |