File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626import openstackclient
2727from openstackclient .common import clientmanager
2828
29-
3029DEFAULT_DOMAIN = 'default'
30+ # list of modules that were originally out-of-tree and are now in
31+ # core OSC
32+ IGNORED_MODULES = (
33+ 'neutron_taas.taas_client.osc' ,
34+ 'neutronclient.osc.v2.taas' ,
35+ )
3136
3237
3338class OpenStackShell (shell .OpenStackShell ):
3439 def __init__ (self ):
40+ command_manager = commandmanager .CommandManager (
41+ 'openstack.cli' , ignored_modules = IGNORED_MODULES
42+ )
43+
3544 super ().__init__ (
3645 description = __doc__ .strip (),
3746 version = openstackclient .__version__ ,
38- command_manager = commandmanager . CommandManager ( 'openstack.cli' ) ,
47+ command_manager = command_manager ,
3948 deferred_help = True ,
4049 )
4150
Original file line number Diff line number Diff line change 55pbr != 2.1.0 ,>= 2.0.0 # Apache-2.0
66
77cryptography >= 2.7 # BSD/Apache-2.0
8- cliff >= 4.8 .0 # Apache-2.0
8+ cliff >= 4.13 .0 # Apache-2.0
99iso8601 >= 0.1.11 # MIT
1010openstacksdk >= 4.6.0 # Apache-2.0
1111osc-lib >= 2.3.0 # Apache-2.0
You can’t perform that action at this time.
0 commit comments