X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBModulePage.py;h=74cd7cb266d7676213f6bd7e397948d8147eb244;hb=d685c5f413bd6cbd5f00c35da830a9a93ff943f1;hp=101aba6913883f768f5f97d1775e42f2adaecb5f;hpb=920eb05b3142d4315a694bbce9433cb95955c754;p=bertos.git diff --git a/wizard/BModulePage.py b/wizard/BModulePage.py index 101aba69..74cd7cb2 100644 --- a/wizard/BModulePage.py +++ b/wizard/BModulePage.py @@ -41,11 +41,11 @@ class BModulePage(BWizardPage): try: bertos_utils.loadModuleData(self._project()) except ModuleDefineException, e: - self._exceptionOccurred(self.tr("Error parsing module information in file %1").arg(e.path)) + self._exceptionOccurred(self.tr("Error parsing line '%2' in file %1").arg(e.path).arg(e.line)) except EnumDefineException, e: - self._exceptionOccurred(self.tr("Error parsing enum informations in file %1").arg(e.path)) + self._exceptionOccurred(self.tr("Error parsing line '%2' in file %1").arg(e.path).arg(e.line)) except ConfigurationDefineException, e: - self._exceptionOccurred(self.tr("Error parsing configuration informations in file %1, reading parameter %2").arg(e.path).arg(e.name)) + self._exceptionOccurred(self.tr("Error parsing line '%2' in file %1").arg(e.path).arg(e.line)) def _fillModuleTable(self): modules = self._projectInfoRetrieve("MODULES") @@ -177,7 +177,7 @@ class BModulePage(BWizardPage): self._resetPropertyDescription() configurations = self._currentModuleConfigurations() if self._currentProperty() in configurations.keys(): - description = configurations[self._currentProperty()]["description"] + description = configurations[self._currentProperty()]["brief"] name = self._currentProperty() self._currentPropertyItem().setText(name + "\n" + description)