| Index: mojo/devtools/common/mojo_run
|
| diff --git a/mojo/devtools/common/mojo_run b/mojo/devtools/common/mojo_run
|
| index f7d30df77c9260e8181b560446db4a0e505af40d..1457fb2d712a3fc9bb51b57a6911bc6316e3f7d1 100755
|
| --- a/mojo/devtools/common/mojo_run
|
| +++ b/mojo/devtools/common/mojo_run
|
| @@ -47,7 +47,7 @@ def _configure_debugger(shell):
|
| Arguments that need to be appended to the shell argument list in order to
|
| run with the debugger.
|
| """
|
| - shell.ForwardHostPortToShell(_MOJO_DEBUGGER_PORT)
|
| + shell.forward_host_port_to_shell(_MOJO_DEBUGGER_PORT)
|
| return ['mojo:debugger %d' % _MOJO_DEBUGGER_PORT]
|
|
|
|
|
| @@ -87,7 +87,7 @@ def main():
|
| if script_args.verbose:
|
| print "Shell arguments: " + str(shell_args)
|
|
|
| - shell.Run(shell_args)
|
| + shell.run(shell_args)
|
| return 0
|
|
|
|
|
|
|