Skip to content

Commit d8f0b82

Browse files
conforming with pep standards
1 parent e61c34b commit d8f0b82

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SoftLayer/CLI/block/access/password.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
help='Password you want to set, this command will fail if the password is not strong')
1313
@environment.pass_env
1414
def cli(env, access_id, password):
15-
"""Modifies a password for a volume's access, requires the allowed_host_id for the password you want to change"""
15+
"""Changes a password for a volume's access.
16+
17+
access id is the allowed_host_id from slcli block access-list
18+
"""
19+
1620
block_manager = SoftLayer.BlockStorageManager(env.client)
1721

1822
result = block_manager.set_credential_password(access_id=access_id, password=password)

0 commit comments

Comments
 (0)