899 |
899 |
900 It reads the error output of the process and inserts it into the |
900 It reads the error output of the process and inserts it into the |
901 error pane. |
901 error pane. |
902 """ |
902 """ |
903 if self.process is not None: |
903 if self.process is not None: |
904 self.errorGroup.show() |
|
905 s = str(self.process.readAllStandardError(), |
904 s = str(self.process.readAllStandardError(), |
906 Preferences.getSystem("IOEncoding"), |
905 Preferences.getSystem("IOEncoding"), |
907 'replace') |
906 'replace') |
908 self.__showError(s) |
907 self.__showError(s) |
909 |
908 |