diff -r 10516539f238 -r 0a02c433f52d Debugger/DebugServer.py --- a/Debugger/DebugServer.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Debugger/DebugServer.py Fri Nov 01 15:48:48 2013 +0100 @@ -107,9 +107,9 @@ client reported an expected test failure @signal utTestSucceededUnexpected(testname, id) emitted after the client reported an unexpected test success - @signal callTraceInfo(isCall, fromFile, fromLine, fromFunction, toFile, - toLine, toFunction) emitted after the client reported the call trace - data + @signal callTraceInfo emitted after the client reported the call trace + data (isCall, fromFile, fromLine, fromFunction, toFile, toLine, + toFunction) """ clientClearBreak = pyqtSignal(str, int) clientClearWatch = pyqtSignal(str) @@ -370,8 +370,8 @@ """ if clType is not None and clType in self.getSupportedLanguages(): self.clientType = clType - Preferences.Prefs.settings.setValue('DebugClient/Type', - self.clientType) + Preferences.Prefs.settings.setValue( + 'DebugClient/Type', self.clientType) def startClient(self, unplanned=True, clType=None, forProject=False, runInConsole=False): @@ -651,7 +651,8 @@ peerAddress = sock.peerAddress().toString() if peerAddress not in Preferences.getDebugger("AllowedHosts"): # the peer is not allowed to connect - res = E5MessageBox.yesNo(None, + res = E5MessageBox.yesNo( + None, self.trUtf8("Connection from illegal host"), self.trUtf8( """<p>A connection was attempted by the illegal host""" @@ -1341,7 +1342,8 @@ @param toLine line number in the target file (string) @param toFunction name of the target function (string) """ - self.callTraceInfo.emit(isCall, fromFile, fromLine, fromFunction, + self.callTraceInfo.emit( + isCall, fromFile, fromLine, fromFunction, toFile, toLine, toFunction) def clientUtPrepared(self, result, exceptionType, exceptionValue):