122 args.append(fname) |
122 args.append(fname) |
123 |
123 |
124 self.process.setWorkingDirectory(dname) |
124 self.process.setWorkingDirectory(dname) |
125 |
125 |
126 self.process.start('svn', args) |
126 self.process.start('svn', args) |
127 procStarted = self.process.waitForStarted() |
127 procStarted = self.process.waitForStarted(5000) |
128 if not procStarted: |
128 if not procStarted: |
129 E5MessageBox.critical(self, |
129 E5MessageBox.critical(self, |
130 self.trUtf8('Process Generation Error'), |
130 self.trUtf8('Process Generation Error'), |
131 self.trUtf8( |
131 self.trUtf8( |
132 'The process {0} could not be started. ' |
132 'The process {0} could not be started. ' |