]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
Minor - documentation fix
authorbruneton <bruneton>
Mon, 28 Oct 2013 13:30:11 +0000 (13:30 +0000)
committerbruneton <bruneton>
Mon, 28 Oct 2013 13:30:11 +0000 (13:30 +0000)
src/MEDLoader/Swig/med2case

index 7865dd6c306cf600f3545c9f1998f1d92a4d9c08..0111839ee8da71074035d9931978e9e558d7125c 100755 (executable)
@@ -26,7 +26,7 @@ from optparse import OptionParser
 import os
 
 parser = OptionParser()
-parser.set_usage("Convert a MED file to a Case file.\n   %prog [options] case_file")
+parser.set_usage("Convert a MED file to a Case file.\n   %prog [options] med_file")
 parser.add_option("-g", "--groups", action="store_true", dest="groups", default=False,
                   help="Are groups in meshes stored in MEDFile exported in output case as subparts (default False)")
 parser.add_option("-c", "--currentdir", action="store_true", dest="here", default=False,
@@ -53,11 +53,11 @@ try:
     cw.setMEDFileDS(mfd)
     listOfWrittenFileNames=cw.write(fOut)
 except InterpKernelException as e:
-    print "An error occured during the conversion!"
+    print "An error occurred during the conversion!"
     print "#######################################"
     raise e
 print "#########"
 for l in listOfWrittenFileNames:
-    print "File \"%s\" sucessfully written !"%(l)
+    print "File \"%s\" successfully written !"%(l)
     pass
 print "#########"