240 |
240 |
241 It reads the error output of the process and inserts it into the |
241 It reads the error output of the process and inserts it into the |
242 error pane. |
242 error pane. |
243 """ |
243 """ |
244 if self.process is not None: |
244 if self.process is not None: |
245 self.errorGroup.show() |
|
246 s = str(self.process.readAllStandardError(), |
245 s = str(self.process.readAllStandardError(), |
247 Preferences.getSystem("IOEncoding"), |
246 Preferences.getSystem("IOEncoding"), |
248 'replace') |
247 'replace') |
249 self.__showError(s) |
248 self.__showError(s) |
250 |
249 |