Skip to content

Commit e9caa44

Browse files
authored
Merge pull request #3214 from jorgeorpinel/master
get/imp: update help output descriptions
2 parents 000c524 + 6e61236 commit e9caa44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dvc/command/get.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _get_file_from_repo(self):
5252

5353
def add_parser(subparsers, parent_parser):
5454
GET_HELP = (
55-
"Download a file or directory from any DVC project or Git repository."
55+
"Download file or directory from any DVC project or Git repository."
5656
)
5757
get_parser = subparsers.add_parser(
5858
"get",

dvc/command/imp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def run(self):
3030

3131
def add_parser(subparsers, parent_parser):
3232
IMPORT_HELP = (
33-
"Download a file or directory from any DVC project or Git repository "
34-
"and take it under DVC control."
33+
"Download file or directory from any DVC project or Git repository "
34+
"into the workspace, and track it."
3535
)
3636

3737
import_parser = subparsers.add_parser(

0 commit comments

Comments
 (0)