X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=wizard%2FBCpuPage.py;h=f38ab35c5069b5ec5b037d219cb991850f6683d6;hb=3001f6f9ca19a6dd354cb1f82425253484c5468b;hp=d6b3616b18f34ca836452df7d1cd9f0a50124e55;hpb=f17105e9cf0514f9204e4c3e3eef07d85742aea5;p=bertos.git diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index d6b3616b..f38ab35c 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -46,10 +46,10 @@ class BCpuPage(BWizardPage): self.setProjectInfo("SELECTED_FREQ", unicode(long(self.pageContent.frequencySpinBox.value()))) tag_dict = self.projectInfo("ALL_CPU_TAGS") for tag in tag_dict: - if tag in infos["CPU_TAGS"] + [infos["CPU_NAME"], infos["CORE_CPU"]]: - tag_dict[tag] = "True" + if tag in infos["CPU_TAGS"] + [infos["CPU_NAME"], infos["CORE_CPU"], infos["TOOLCHAIN"]]: + tag_dict[tag] = True else: - tag_dict[tag] = "False" + tag_dict[tag] = False self.setProjectInfo("ALL_CPU_TAGS", tag_dict) return True else: @@ -86,9 +86,9 @@ class BCpuPage(BWizardPage): cpu_name = self.projectInfo("CPU_NAME") selected_freq = self.projectInfo("SELECTED_FREQ") self.setupUi() - if not cpu_name is None: + if cpu_name: self.selectItem(cpu_name) - if not selected_freq is None: + if selected_freq: self.setFrequency(selected_freq) self.freq_modified = True QApplication.instance().restoreOverrideCursor() @@ -134,7 +134,7 @@ class BCpuPage(BWizardPage): # Create, fill and store the dict with the tags tag_dict = {} for element in tag_list: - tag_dict[element] = "False" + tag_dict[element] = False self.setProjectInfo("ALL_CPU_TAGS", tag_dict) for cpu in infos: item = QListWidgetItem(cpu["CPU_NAME"])