Skip to content

Commit 6985c8d

Browse files
committed
Fix some commands not showing with newer click releases
1 parent 0eedf0b commit 6985c8d

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

cloudscale_cli/cli.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ def cli(ctx, profile, api_token, debug, output, verbose):
5353
)
5454

5555

56-
cli.add_command(custom_image)
57-
cli.add_command(flavor)
58-
cli.add_command(floating_ip)
59-
cli.add_command(image)
60-
cli.add_command(network)
61-
cli.add_command(objects_user)
62-
cli.add_command(region)
63-
cli.add_command(server_group)
64-
cli.add_command(server)
65-
cli.add_command(subnet)
66-
cli.add_command(volume)
56+
cli.add_command(custom_image, name='custom-image')
57+
cli.add_command(flavor, name='flavor')
58+
cli.add_command(floating_ip, name='floating-ip')
59+
cli.add_command(image, name='image')
60+
cli.add_command(network, name='network')
61+
cli.add_command(objects_user, name='objects-user')
62+
cli.add_command(region, name='region')
63+
cli.add_command(server_group, name='server-group')
64+
cli.add_command(server, name='server')
65+
cli.add_command(subnet, name='subnet')
66+
cli.add_command(volume, name='volume')

0 commit comments

Comments
 (0)