PyLint/PyLintExecDialog.py

changeset 16
ea2cd48d7338
parent 15
0fc414663bd9
child 20
8ca799e4b7e4
diff -r 0fc414663bd9 -r ea2cd48d7338 PyLint/PyLintExecDialog.py
--- a/PyLint/PyLintExecDialog.py	Wed Jan 02 10:53:27 2013 +0100
+++ b/PyLint/PyLintExecDialog.py	Sun Feb 03 16:56:21 2013 +0100
@@ -227,7 +227,7 @@
         self.process.setReadChannel(QProcess.StandardOutput)
         
         while self.process.canReadLine():
-            s = self.process.readLine()
+            s = str(self.process.readLine(), self.__ioEncoding, 'replace')
             self.buf += s + os.linesep
             if not self.htmlOutput:
                 self.contents.insertPlainText(s)

eric ide

mercurial