--- a/eric6/Debugger/DebugServer.py Sat Dec 26 22:49:27 2020 +0100 +++ b/eric6/Debugger/DebugServer.py Sun Dec 27 16:44:10 2020 +0100 @@ -86,9 +86,9 @@ the client banner data was received @signal clientCapabilities(capabilities, cltype, venvname) emitted after the clients capabilities were received - @signal clientCompletionList(completionList, text, debuggerId) emitted - after the client the commandline completion list and the reworked - search string was received from the client + @signal clientCompletionList(completionList, text) emitted after the + commandline completion list and the reworked search string was + received from the client @signal passiveDebugStarted(str, bool) emitted after the debug client has connected in passive debug mode @signal clientGone(bool) emitted if the client went away (planned or @@ -147,7 +147,7 @@ clientRawInput = pyqtSignal(str, bool, str) clientBanner = pyqtSignal(str, str, str) clientCapabilities = pyqtSignal(int, str, str) - clientCompletionList = pyqtSignal(list, str, str) + clientCompletionList = pyqtSignal(list, str) clientInterpreterChanged = pyqtSignal(str) clientDebuggerId = pyqtSignal(str) utDiscovered = pyqtSignal(list, str, str) @@ -1501,7 +1501,7 @@ @param text the text to be completed @type str """ - self.debuggerInterface.remoteCompletion(text) + self.debuggerInterface.remoteCompletion(debuggerId, text) def remoteUTDiscover(self, clientType, forProject, venvName, syspath, workdir, discoveryStart):