| Index: tools/cr/cr/actions/gdb.py
|
| diff --git a/tools/cr/cr/actions/gdb.py b/tools/cr/cr/actions/gdb.py
|
| index 64386dbce54cdd740f608f7a50cfbae37167fc6f..841c2c180889e0f47da8be7447f4f314c6d23191 100644
|
| --- a/tools/cr/cr/actions/gdb.py
|
| +++ b/tools/cr/cr/actions/gdb.py
|
| @@ -17,7 +17,7 @@ class GdbDebugger(cr.Debugger):
|
| return (cr.LinuxPlatform.GetInstance().is_active and
|
| self.DETECTED.Find('CR_GDB'))
|
|
|
| - def Invoke(self, context, targets, arguments):
|
| + def Invoke(self, targets, arguments):
|
| for target in targets:
|
| cr.Host.Execute(
|
| target,
|
| @@ -27,7 +27,7 @@ class GdbDebugger(cr.Debugger):
|
| *arguments
|
| )
|
|
|
| - def Attach(self, context, targets, arguments):
|
| + def Attach(self, targets, arguments):
|
| raise NotImplementedError('Attach not currently supported for gdb.')
|
|
|
| @classmethod
|
|
|