Skip to content

Commit

Permalink
Fix help string for pipeline parameters (DM-23635)
Browse files Browse the repository at this point in the history
This was forgotten during migratiion to new pipeline definition format.
QGraph is still saved in pickle and read from pickle too.
  • Loading branch information
andy-slac committed Feb 26, 2020
1 parent 354b538 commit 8df939f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ctrl/mpexec/cmdLineParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def _makePipelineOptions(parser):
"""
group = parser.add_argument_group("Pipeline building options")
group.add_argument("-p", "--pipeline", dest="pipeline",
help="Location of a serialized pipeline definition (pickle file).",
help="Location of a pipeline definition file in YAML format.",
metavar="PATH")
group.add_argument("-t", "--task", metavar="TASK[:LABEL]",
dest="pipeline_actions", action='append', type=_ACTION_ADD_TASK,
Expand All @@ -323,7 +323,7 @@ def _makePipelineOptions(parser):
"ordering is performed as last step before saving or executing "
"pipeline.")
group.add_argument("-s", "--save-pipeline", dest="save_pipeline",
help="Location for storing a serialized pipeline definition (pickle file).",
help="Location for storing resulting pipeline definition in YAML format.",
metavar="PATH")
group.add_argument("--pipeline-dot", dest="pipeline_dot",
help="Location for storing GraphViz DOT representation of a pipeline.",
Expand Down

0 comments on commit 8df939f

Please sign in to comment.