diff --git a/dnf/cli/commands/repoquery.py b/dnf/cli/commands/repoquery.py index e3c0ab270b..711e236e01 100644 --- a/dnf/cli/commands/repoquery.py +++ b/dnf/cli/commands/repoquery.py @@ -121,7 +121,7 @@ def set_argparser(parser): whatrequiresform.add_argument("--exactdeps", action="store_true", help=_('check dependencies exactly as given, opposite of --alldeps')) parser.add_argument('--deplist', action='store_true', help=_( - "list of all dependencies and what packages it provides")) + "show a list of all dependencies and what packages provide them")) parser.add_argument('--querytags', action='store_true', help=_('show available tags to use with ' '--queryformat')) diff --git a/dnf/yum/commands/deplist.py b/dnf/yum/commands/deplist.py index c34de0c527..a18c3bd8ff 100644 --- a/dnf/yum/commands/deplist.py +++ b/dnf/yum/commands/deplist.py @@ -25,11 +25,11 @@ class DeplistCommand(RepoQueryCommand): """ - some comment about command + The command is alias for 'dnf repoquery --deplist' """ aliases = ('deplist',) - summary = _("List a package's dependencies") + summary = _("List package's dependencies and what packages provide them") def configure(self): RepoQueryCommand.configure(self)