@@ -101,7 +101,7 @@ def _setup_root_parser():
101101
102102 # General bugzilla connection options
103103 p .add_argument ('--bugzilla' , default = default_url ,
104- help = "bugzilla XMLRPC URI. default: %s" % default_url )
104+ help = "bugzilla URI. default: %s" % default_url )
105105 p .add_argument ("--nosslverify" , dest = "sslverify" ,
106106 action = "store_false" , default = True ,
107107 help = "Don't error on invalid bugzilla SSL certificate" )
@@ -258,7 +258,7 @@ def _parser_add_bz_fields(rootp, command):
258258 # Put this at the end, so it sticks out more
259259 p .add_argument ('--field' ,
260260 metavar = "FIELD=VALUE" , action = "append" , dest = "fields" ,
261- help = "Manually specify a bugzilla XMLRPC field. FIELD is "
261+ help = "Manually specify a bugzilla API field. FIELD is "
262262 "the raw name used by the bugzilla instance. For example, if your "
263263 "bugzilla instance has a custom field cf_my_field, do:\n "
264264 " --field cf_my_field=VALUE" )
@@ -969,7 +969,7 @@ def _do_modify(bz, parser, opt):
969969 # Now for the things we can't blindly batch.
970970 # Being able to prepend/append to whiteboards, which are just
971971 # plain string values, is an old rhbz semantic that we try to maintain
972- # here. This is a bit weird for traditional bugzilla XMLRPC
972+ # here. This is a bit weird for traditional bugzilla API
973973 log .debug ("Adjusting whiteboard fields one by one" )
974974 for bug in bz .getbugs (bugid_list ):
975975 update_kwargs = {}
0 commit comments