cli: fix help text for download-build --type=remote-sources

OSBS's cachito "remote-sources" ArchiveType is plural, and the singular
"remote-source" ArchiveType is incorrect. Use the correct form in the
help text.
This commit is contained in:
Ken Dreyer 2021-06-10 09:34:52 -04:00
parent 99df7063e3
commit 02511496b4

View file

@ -6853,7 +6853,7 @@ def anon_handle_download_build(options, session, args):
help=_("Only download packages for this arch (may be used multiple times)"))
parser.add_option("--type",
help=_("Download archives of the given type, rather than rpms "
"(maven, win, image, remote-source)"))
"(maven, win, image, remote-sources)"))
parser.add_option("--latestfrom", dest="latestfrom",
help=_("Download the latest build from this tag"))
parser.add_option("--debuginfo", action="store_true", help=_("Also download -debuginfo rpms"))