Skip to content

Commit

Permalink
Fix description of deplist option and command
Browse files Browse the repository at this point in the history
Closes: #621
Approved by: j-mracek
  • Loading branch information
j-mracek authored and DNF Bot committed Nov 22, 2016
1 parent 29e1f91 commit d6efe72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dnf/cli/commands/repoquery.py
Expand Up @@ -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'))
Expand Down
4 changes: 2 additions & 2 deletions dnf/yum/commands/deplist.py
Expand Up @@ -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)
Expand Down

0 comments on commit d6efe72

Please sign in to comment.