mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1075072 - debuggerArgs is a list not str, r=gps
This commit is contained in:
parent
0d44be178c
commit
e353972dd5
@ -123,7 +123,7 @@ def get_debugger_info(debugger, debuggerArgs = None, debuggerInteractive = False
|
||||
# Extend the default arguments for the chosen debugger with the ones passed in, if any.
|
||||
if debuggerArgs:
|
||||
# Append the provided debugger arguments at the end of the arguments list.
|
||||
debugger_arguments += debuggerArgs.split()
|
||||
debugger_arguments.extend(debuggerArgs)
|
||||
|
||||
# Override the default debugger interactive mode if needed.
|
||||
debugger_interactive = get_debugger_info('interactive', False)
|
||||
|
Loading…
Reference in New Issue
Block a user