( arguments, extra_data = None )
| 243 | |
| 244 | |
| 245 | def GetCommandResponse( arguments, extra_data = None ): |
| 246 | request = SendCommandRequestAsync( arguments, |
| 247 | extra_data = extra_data, |
| 248 | silent = True ) |
| 249 | # Block here to get the response |
| 250 | return request.StringResponse() |
| 251 | |
| 252 | |
| 253 | def GetRawCommandResponse( arguments, silent, location = None ): |
no test coverage detected