--- a/Debugger/DebuggerInterfacePython3.py Tue Aug 10 13:15:03 2010 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Tue Aug 10 14:17:54 2010 +0200 @@ -382,8 +382,7 @@ return # do not want any slots called during shutdown - self.disconnect(self.qsock, SIGNAL('disconnected()'), - self.debugServer.startClient) + self.qsock.disconnected.disconnect(self.debugServer.startClient) self.qsock.readyRead[()].disconnect(self.__parseClientLine) # close down socket, and shut down client as well. @@ -944,4 +943,4 @@ if self.qsock is not None: self.qsock.write(cmd.encode('utf8', 'backslashreplace')) else: - self.queue.append(cmd) \ No newline at end of file + self.queue.append(cmd)