From 6e61236fb720011c933419de0b5eb1c850362ddd Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Wed, 22 Jan 2020 12:00:06 -0600 Subject: [PATCH] get/imp: update help output descriptions per https://github.com/iterative/dvc/issues/3196#issuecomment-577306219 --- dvc/command/get.py | 2 +- dvc/command/imp.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dvc/command/get.py b/dvc/command/get.py index 1386d8ca40..0771bfb261 100644 --- a/dvc/command/get.py +++ b/dvc/command/get.py @@ -52,7 +52,7 @@ def _get_file_from_repo(self): def add_parser(subparsers, parent_parser): GET_HELP = ( - "Download a file or directory from any DVC project or Git repository." + "Download file or directory from any DVC project or Git repository." ) get_parser = subparsers.add_parser( "get", diff --git a/dvc/command/imp.py b/dvc/command/imp.py index 82317dbb5f..7d095dbd17 100644 --- a/dvc/command/imp.py +++ b/dvc/command/imp.py @@ -30,8 +30,8 @@ def run(self): def add_parser(subparsers, parent_parser): IMPORT_HELP = ( - "Download a file or directory from any DVC project or Git repository " - "and take it under DVC control." + "Download file or directory from any DVC project or Git repository " + "into the workspace, and track it." ) import_parser = subparsers.add_parser(