116 """ |
116 """ |
117 self.normal = (exitStatus == QProcess.NormalExit) and (exitCode == 0) |
117 self.normal = (exitStatus == QProcess.NormalExit) and (exitCode == 0) |
118 self.__finish() |
118 self.__finish() |
119 |
119 |
120 def startProcess(self, args, workingDir=None, showArgs=True, |
120 def startProcess(self, args, workingDir=None, showArgs=True, |
121 environment={}): |
121 environment=None): |
122 """ |
122 """ |
123 Public slot used to start the process. |
123 Public slot used to start the process. |
124 |
124 |
125 @param args list of arguments for the process (list of strings) |
125 @param args list of arguments for the process (list of strings) |
126 @keyparam workingDir working directory for the process (string) |
126 @keyparam workingDir working directory for the process (string) |