234 |
234 |
235 It reads the error output of the process and inserts it into the |
235 It reads the error output of the process and inserts it into the |
236 error pane. |
236 error pane. |
237 """ |
237 """ |
238 if self.process is not None: |
238 if self.process is not None: |
239 self.errorGroup.show() |
|
240 s = str(self.process.readAllStandardError(), |
239 s = str(self.process.readAllStandardError(), |
241 Preferences.getSystem("IOEncoding"), |
240 Preferences.getSystem("IOEncoding"), |
242 'replace') |
241 'replace') |
243 self.__showError(s) |
242 self.__showError(s) |
244 |
243 |