We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df2dfe5 commit 780f274Copy full SHA for 780f274
SoftLayer/CLI/image/share.py
@@ -1,4 +1,4 @@
1
-"""Get details for an image."""
+"""Share an image template with another account."""
2
# :license: MIT, see LICENSE for more details.
3
4
import click
@@ -13,7 +13,7 @@
13
@click.option('--account-id', help='Account Id for another account to share image template', required=True)
14
@environment.pass_env
15
def cli(env, identifier, account_id):
16
- """Permit share an image template to another account."""
+ """Share an image template with another account."""
17
18
image_mgr = SoftLayer.ImageManager(env.client)
19
image_id = helpers.resolve_id(image_mgr.resolve_ids, identifier, 'image')
0 commit comments