fix typo in option help

This commit is contained in:
Mike McLean 2009-02-02 17:57:09 -05:00
parent 48a49e650d
commit 0923de7bc8

View file

@ -3733,7 +3733,7 @@ def handle_remove_external_repo(options, session, args):
usage = _("usage: %prog remove-external-repo repo [tag ...]")
usage += _("\n(Specify the --help global option for a list of other help options)")
parser = OptionParser(usage=usage)
parser.add_option("--alltags", action="store_true", help=_("Do not cancel subtasks"))
parser.add_option("--alltags", action="store_true", help=_("Remove from all tags"))
parser.add_option("--force", action='store_true', help=_("Force action"))
(options, args) = parser.parse_args(args)
if len(args) < 1: