cli: improve help text for download-logs --nvr

Explain that the --nvr option is an alternative to simply specifying a
task ID. In particular, this will not download the *build's* logs, just
the task logs for that build.
This commit is contained in:
Ken Dreyer 2021-07-16 14:25:29 -04:00 committed by Tomas Kopecek
parent 4878f50fa7
commit 0837acdf67

View file

@ -7128,7 +7128,7 @@ def anon_handle_download_logs(options, session, args):
parser.add_option("-r", "--recurse", action="store_true",
help=_("Process children of this task as well"))
parser.add_option("--nvr", action="store_true",
help=_("Get logs from n-v-r"))
help=_("Get the logs for the task associated with this build Name-Version-Release."))
parser.add_option("-m", "--match", action="append", metavar="PATTERN",
help=_("Get only log matching PATTERN. May be used multiple times."))
parser.add_option("-c", "--continue", action="store_true", dest="cont",