Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py

changeset 3036
30c81c9e88b8
parent 3034
7ce719013078
child 3060
5883ce99ee12
child 3091
8239cae3f947
--- a/Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py	Sat Oct 19 14:05:26 2013 +0200
+++ b/Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py	Sat Oct 19 15:15:50 2013 +0200
@@ -276,10 +276,9 @@
         proc.start(interpreter, [checker, filename])
         finished = proc.waitForFinished(15000)
         if finished:
-            output = \
-                str(proc.readAllStandardOutput(),
-                        Preferences.getSystem("IOEncoding"),
-                        'replace').splitlines()
+            output = str(proc.readAllStandardOutput(),
+                         Preferences.getSystem("IOEncoding"),
+                         'replace').splitlines()
             
             nok = output[0] == "ERROR"
             if nok:

eric ide

mercurial