Preferences/ProgramsDialog.py

changeset 3038
7fe9a53280bd
parent 3034
7ce719013078
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Preferences/ProgramsDialog.py	Sat Oct 19 16:14:07 2013 +0200
+++ b/Preferences/ProgramsDialog.py	Sat Oct 19 16:51:12 2013 +0200
@@ -39,7 +39,7 @@
         self.__hasSearched = False
         
         self.programsList.headerItem().setText(
-        self.programsList.columnCount(), "")
+            self.programsList.columnCount(), "")
         
         self.searchButton = self.buttonBox.addButton(
             self.trUtf8("Search"), QDialogButtonBox.ActionRole)
@@ -302,10 +302,9 @@
                     proc.start(exe, [versionCommand])
                     finished = proc.waitForFinished(10000)
                     if finished:
-                        output = \
-                            str(proc.readAllStandardOutput(),
-                                    Preferences.getSystem("IOEncoding"),
-                                    'replace')
+                        output = str(proc.readAllStandardOutput(),
+                                     Preferences.getSystem("IOEncoding"),
+                                     'replace')
                         if versionRe is None:
                             versionRe = "^{0}".format(
                                 re.escape(versionStartsWith))

eric ide

mercurial