Fix for whitespace padding on JSON responses

Fixes #17825, closes #17829
pull/17822/head
Nathaniel Case 8 years ago
parent 25aa757e80
commit 3f4ac0b9f7

@ -176,7 +176,7 @@ class Shell(object):
def sanitize(self, cmd, resp):
cleaned = []
for line in resp.splitlines():
if line.startswith(str(cmd)) or self.find_prompt(line):
if line.lstrip().startswith(str(cmd)) or self.find_prompt(line):
continue
cleaned.append(line)
return "\n".join(cleaned)

Loading…
Cancel
Save