331 |
331 |
332 It reads the error output of the process and inserts it into the |
332 It reads the error output of the process and inserts it into the |
333 error pane. |
333 error pane. |
334 """ |
334 """ |
335 if self.process is not None: |
335 if self.process is not None: |
336 self.errorGroup.show() |
|
337 s = str(self.process.readAllStandardError(), |
336 s = str(self.process.readAllStandardError(), |
338 Preferences.getSystem("IOEncoding"), |
337 Preferences.getSystem("IOEncoding"), |
339 'replace') |
338 'replace') |
340 self.__showError(s) |
339 self.__showError(s) |
341 |
340 |