update comments

This commit is contained in:
Tomas Kopecek 2020-05-07 10:01:04 +02:00
parent 0e5b54f32d
commit c636f56526
2 changed files with 2 additions and 2 deletions

View file

@ -121,7 +121,7 @@ def get_options():
parser.add_option("--principal", help=_("specify a Kerberos principal to use"))
parser.add_option("--krbservice", help=_("specify the Kerberos service name for the hub"))
parser.add_option("--cert", help=_("specify a SSL cert to use"), metavar="FILE")
parser.add_option("--ca", help=SUPPRESS_HELP, metavar="FILE")
parser.add_option("--ca", help=SUPPRESS_HELP, metavar="FILE") # FIXME: remove in 1.24
parser.add_option("--runas", help=_("run as the specified user (requires special privileges)"))
parser.add_option("--user", help=_("specify user"))
parser.add_option("--password", help=_("specify password"))

View file

@ -54,7 +54,7 @@ def get_options():
parser.add_option("--network-hack", action="store_true", default=False,
help=optparse.SUPPRESS_HELP) # no longer used
parser.add_option("--cert", help=_("Client SSL certificate file for authentication"))
parser.add_option("--ca", help=optparse.SUPPRESS_HELP) # FIXME: remove in next major release
parser.add_option("--ca", help=optparse.SUPPRESS_HELP) # FIXME: remove in 1.24
parser.add_option("--serverca", help=_("CA cert file that issued the hub certificate"))
parser.add_option("-n", "--test", action="store_true", default=False,
help=_("test mode"))