| |
@@ -27,7 +27,7 @@
|
| |
|
| |
import koji
|
| |
import koji.policy
|
| |
- from koji.util import LazyDict, LazyValue, to_list, deprecated
|
| |
+ from koji.util import LazyDict, LazyValue, to_list
|
| |
|
| |
|
| |
def _(args):
|
| |
@@ -54,7 +54,6 @@
|
| |
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 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"))
|
| |
@@ -131,7 +130,6 @@
|
| |
['password', None, 'string'],
|
| |
['noauth', None, 'boolean'],
|
| |
['cert', None, 'string'],
|
| |
- ['ca', None, 'string'], # FIXME: remove in next major release
|
| |
['serverca', None, 'string'],
|
| |
['server', None, 'string'],
|
| |
['weburl', None, 'string'],
|
| |
@@ -173,9 +171,6 @@
|
| |
(options, args) = parser.parse_args(values=defaults)
|
| |
options.config = config
|
| |
|
| |
- if options.ca:
|
| |
- deprecated("--ca option is deprecated and will be removed in 1.24")
|
| |
-
|
| |
# figure out actions
|
| |
actions = ('prune', 'trash', 'delete', 'salvage')
|
| |
if options.action:
|
| |
Fixes: https://pagure.io/koji/issue/2192