104 self.process.start('hg', args) |
104 self.process.start('hg', args) |
105 procStarted = self.process.waitForStarted(5000) |
105 procStarted = self.process.waitForStarted(5000) |
106 if not procStarted: |
106 if not procStarted: |
107 E5MessageBox.critical( |
107 E5MessageBox.critical( |
108 self, |
108 self, |
109 self.trUtf8('Process Generation Error'), |
109 self.tr('Process Generation Error'), |
110 self.trUtf8( |
110 self.tr( |
111 'The process {0} could not be started. ' |
111 'The process {0} could not be started. ' |
112 'Ensure, that it is in the search path.' |
112 'Ensure, that it is in the search path.' |
113 ).format('hg')) |
113 ).format('hg')) |
114 |
114 |
115 def __finish(self): |
115 def __finish(self): |