aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mitmproxy/command.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index c7a45587..e75e6d26 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -173,16 +173,9 @@ class CommandManager(mitmproxy.types._CommandBase):
rex = rex.copy().leaveWhitespace()
- remainder = cmdstr
-
for t, start, end in rex.scanString(cmdstr):
-
- remainder = cmdstr[end:]
parts.append(t[0])
- if remainder != '':
- parts.append(remainder)
-
if not parts:
parts = []