123 self.process.start('svn', args) |
123 self.process.start('svn', args) |
124 procStarted = self.process.waitForStarted(5000) |
124 procStarted = self.process.waitForStarted(5000) |
125 if not procStarted: |
125 if not procStarted: |
126 E5MessageBox.critical( |
126 E5MessageBox.critical( |
127 self, |
127 self, |
128 self.trUtf8('Process Generation Error'), |
128 self.tr('Process Generation Error'), |
129 self.trUtf8( |
129 self.tr( |
130 'The process {0} could not be started. ' |
130 'The process {0} could not be started. ' |
131 'Ensure, that it is in the search path.' |
131 'Ensure, that it is in the search path.' |
132 ).format('svn')) |
132 ).format('svn')) |
133 |
133 |
134 def __finish(self): |
134 def __finish(self): |