eric7/Utilities/BackgroundService.py

branch
eric7
changeset 8456
00a7d3bd87dc
parent 8366
2a9f5153c438
child 8478
b95aa969efdf
equal deleted inserted replaced
8455:3ca569b8f324 8456:00a7d3bd87dc
92 if interpreter == "" or not Utilities.isinpath(interpreter): 92 if interpreter == "" or not Utilities.isinpath(interpreter):
93 return None 93 return None
94 94
95 backgroundClient = os.path.join( 95 backgroundClient = os.path.join(
96 os.path.dirname(__file__), "BackgroundClient.py") 96 os.path.dirname(__file__), "BackgroundClient.py")
97 proc = QProcess() 97 proc = QProcess(self)
98 proc.setProcessChannelMode( 98 proc.setProcessChannelMode(
99 QProcess.ProcessChannelMode.ForwardedChannels) 99 QProcess.ProcessChannelMode.ForwardedChannels)
100 args = [ 100 args = [
101 backgroundClient, 101 backgroundClient,
102 self.hostAddress, 102 self.hostAddress,

eric ide

mercurial