Change variable name to follow the develer python coding standard
[bertos.git] / wizard / BOutputPage.py
index 397be470a6684adbde69afb19cca125db5356df2..c8e22c9fe0625f2e9bf3e7ac53b3e207067ecae8 100644 (file)
@@ -31,10 +31,10 @@ class BOutputPage(BWizardPage):
         self.connect(self.pageContent.codeliteCheckBox, SIGNAL("stateChanged(int)"), lambda checked: self._modeChecked(checked, "codelite"))
     
     def _modeChecked(self, checked, value):
-        outputList = self._projectInfoRetrieve("OUTPUT")
+        output_list = self._projectInfoRetrieve("OUTPUT")
         if checked == Qt.Checked:
-            outputList.append(value)
+            output_list.append(value)
         else:
-            outputList.remove(value)
-        self._projectInfoStore("OUTPUT", outputList)
+            output_list.remove(value)
+        self._projectInfoStore("OUTPUT", output_list)
     
\ No newline at end of file