QMessageBox.critical( self, "Format "+format+" non reconnu","EFICAS ne sait pas convertir le JDC selon le format "+format)
return ""
- #-------------------------#
- def run(self,exec="oui"):
- #-------------------------#
+ #-----------------------------#
+ def run(self,execution="oui"):
+ #-----------------------------#
format=self.appliEficas.format_fichier
self.textePython=""
if generator.plugins.has_key(format):
txt= apply(JDCEditor.__dict__[code],(self,))
if txt !="" :
self.textePython=self.textePython+txt
- if exec="oui" :
+ if execution=="oui" :
os.system(self.textePython)
- else
+ else:
return self.textePython
def saveRun(self):
- texte=self.run(exec="non")
+ texte=self.run(execution="non")
print texte