diff -r 08b8b3d2deb1 -r d1057f83610e eric6/Debugger/DebugServer.py --- a/eric6/Debugger/DebugServer.py Sat Mar 13 19:45:36 2021 +0100 +++ b/eric6/Debugger/DebugServer.py Sun Mar 14 13:49:41 2021 +0100 @@ -172,7 +172,7 @@ appendStdout = pyqtSignal(str) def __init__(self, originalPathString, preventPassiveDebugging=False, - project=None): + project=None, parent=None): """ Constructor @@ -183,8 +183,10 @@ @type bool (optional) @param project reference to the project object (defaults to None) @type Project (optional) + @param parent reference to the parent object + @type QObject """ - super(DebugServer, self).__init__() + super(DebugServer, self).__init__(parent) self.__originalPathString = originalPathString