Skip to content

Commit

Permalink
repro: fix help message for default target
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed May 20, 2020
1 parent 09136f2 commit 32676ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dvc/command/repro.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from dvc.command.base import CmdBase, append_doc_link
from dvc.command.metrics import show_metrics
from dvc.command.status import CmdDataStatus
from dvc.dvcfile import PIPELINE_FILE
from dvc.exceptions import DvcException

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -69,7 +70,7 @@ def add_parser(subparsers, parent_parser):
repro_parser.add_argument(
"targets",
nargs="*",
help="DVC-file to reproduce. 'Dvcfile' by default.",
help=f"Stages to reproduce. '{PIPELINE_FILE}' by default."
)
repro_parser.add_argument(
"-f",
Expand Down

0 comments on commit 32676ed

Please sign in to comment.