Skip to content

Commit facc4ee

Browse files
konturappisar
authored andcommitted
Fix typo from previous commit (left over ])
1 parent 94f665a commit facc4ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dnf/cli/option_parser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def _add_general_options(self):
182182
help=_("show {prog} version and exit").format(
183183
prog=dnf.util.MAIN_PROG_UPPER))
184184
general_grp.add_argument("--installroot", help=_("set install root"),
185-
metavar='PATH]')
185+
metavar='PATH')
186186
general_grp.add_argument("--nodocs", action="store_const", const=['nodocs'], dest='tsflags',
187187
help=_("do not install documentations"))
188188
general_grp.add_argument("--noplugins", action="store_false",
@@ -191,11 +191,11 @@ def _add_general_options(self):
191191
general_grp.add_argument("--enableplugin", dest="enableplugin",
192192
default=[], action=self._SplitCallback,
193193
help=_("enable plugins by name"),
194-
metavar='PLUGIN]')
194+
metavar='PLUGIN')
195195
general_grp.add_argument("--disableplugin", dest="disableplugin",
196196
default=[], action=self._SplitCallback,
197197
help=_("disable plugins by name"),
198-
metavar='PLUGIN]')
198+
metavar='PLUGIN')
199199
general_grp.add_argument("--releasever", default=None,
200200
help=_("override the value of $releasever"
201201
" in config and repo files"))

0 commit comments

Comments
 (0)