116 args.append(fname) |
116 args.append(fname) |
117 |
117 |
118 self.process.setWorkingDirectory(dname) |
118 self.process.setWorkingDirectory(dname) |
119 |
119 |
120 self.process.start('svn', args) |
120 self.process.start('svn', args) |
121 procStarted = self.process.waitForStarted() |
121 procStarted = self.process.waitForStarted(5000) |
122 if not procStarted: |
122 if not procStarted: |
123 E5MessageBox.critical(self, |
123 E5MessageBox.critical(self, |
124 self.trUtf8('Process Generation Error'), |
124 self.trUtf8('Process Generation Error'), |
125 self.trUtf8( |
125 self.trUtf8( |
126 'The process {0} could not be started. ' |
126 'The process {0} could not be started. ' |