Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SoftLayer/CLI/hardware/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
@helpers.multi_option('--extra', '-e', help="Extra options")
@click.option('--test',
is_flag=True,
help="Do not actually create the virtual server")
help="Do not actually create the server")
@click.option('--template', '-t',
is_eager=True,
callback=template.TemplateCallback(list_args=['key']),
Expand Down
4 changes: 2 additions & 2 deletions SoftLayer/CLI/hardware/credentials.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""List virtual server credentials."""
"""List server credentials."""
# :license: MIT, see LICENSE for more details.

import click
Expand All @@ -13,7 +13,7 @@
@click.argument('identifier')
@environment.pass_env
def cli(env, identifier):
"""List virtual server credentials."""
"""List server credentials."""

manager = SoftLayer.HardwareManager(env.client)
hardware_id = helpers.resolve_id(manager.resolve_ids,
Expand Down