Salome HOME
sat #32302 pip option --build obsolète : integration du patch fourni par Nabil
[tools/sat.git] / commands / run.py
index fa08cb930f3ede395d0f35a108c2c801ae5b312d..c6138e5087e18db34ab8fb1fbb3021dc15102e87 100644 (file)
@@ -21,6 +21,9 @@ import subprocess
 
 import src
 
+# Define all possible option for log command :  sat run <options>
+parser = src.options.Options()
+# no option more than -h as generic default
 
 def description():
     '''method that is called when salomeTools is called with --help option.
@@ -28,8 +31,12 @@ def description():
     :return: The text to display for the run command description.
     :rtype: str
     '''
-    return _("This command runs the application launcher"
-             " with the given arguments.\n\nexample:\nsat run SALOME-master")
+    return _("""\
+The run command runs the application launcher with the given arguments.
+
+example:
+>> sat run SALOME-master
+""")
 
 def run(args, runner, logger):
     '''method that is called when salomeTools is called with run parameter.