Change variable name to follow the develer python coding standard
[bertos.git] / wizard / BCpuPage.py
index 3658635f8b2e904f54c0ce3a55974a117c67d2f2..abf0251f6c1de911e4887fb5cd7a81aecc0ff666 100644 (file)
@@ -50,10 +50,10 @@ class BCpuPage(BWizardPage):
         QApplication.instance().setOverrideCursor(Qt.WaitCursor)
         bertos_utils.loadSourceTree(self._project())
         self._populateCpuList()
-        cpuName = self._projectInfoRetrieve("CPU_NAME")
+        cpu_name = self._projectInfoRetrieve("CPU_NAME")
         self._setupUi()
-        if not cpuName is None:
-            self._selectItem(cpuName)
+        if not cpu_name is None:
+            self._selectItem(cpu_name)
         QApplication.instance().restoreOverrideCursor()
         self.emit(SIGNAL("completeChanged()"))