Skip to content

Commit ccf8dd5

Browse files
authored
Call strip not split
1 parent d6c01f1 commit ccf8dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/FBDebugCommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ def run(self, arguments, options):
442442
# The full unsplit command is in position 0.
443443
sequence = arguments[1:]
444444
for command in sequence:
445-
command = command.split()
445+
command = command.strip()
446446
if not command:
447447
continue
448448
object = lldb.SBCommandReturnObject()

0 commit comments

Comments
 (0)