Skip to content

Commit

Permalink
Call strip not split
Browse files Browse the repository at this point in the history
  • Loading branch information
kastiglione authored Apr 3, 2018
1 parent d6c01f1 commit ccf8dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/FBDebugCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def run(self, arguments, options):
# The full unsplit command is in position 0.
sequence = arguments[1:]
for command in sequence:
command = command.split()
command = command.strip()
if not command:
continue
object = lldb.SBCommandReturnObject()
Expand Down

0 comments on commit ccf8dd5

Please sign in to comment.