From d6efe724e8dc6b612abc3c7d4a88a98db4c6cf44 Mon Sep 17 00:00:00 2001 From: Jaroslav Mracek Date: Tue, 22 Nov 2016 08:40:52 +0100 Subject: [PATCH] Fix description of deplist option and command Closes: #621 Approved by: j-mracek --- dnf/cli/commands/repoquery.py | 2 +- dnf/yum/commands/deplist.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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)