Skip to content

Commit 91e8227

Browse files
author
David Pickle
committed
Fix two typos
1 parent 10de342 commit 91e8227

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

SoftLayer/CLI/block/cancel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ def cli(env, volume_id, reason, immediate):
3636
click.echo('Block volume with id %s has been marked'
3737
' for cancellation' % volume_id)
3838
else:
39-
click.echo('Unable to cancle block volume %s' % volume_id)
39+
click.echo('Unable to cancel block volume %s' % volume_id)

SoftLayer/CLI/block/snapshot/disable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def cli(env, volume_id, schedule_type):
1919
if (schedule_type != 'HOURLY' and schedule_type != 'DAILY'
2020
and schedule_type != 'WEEKLY'):
2121
raise exceptions.CLIAbort(
22-
'--schedule_type must be HOURLY, DAILY, or WEEKLY')
22+
'--schedule-type must be HOURLY, DAILY, or WEEKLY')
2323

2424
block_manager = SoftLayer.BlockStorageManager(env.client)
2525
disabled = block_manager.disable_snapshots(volume_id, schedule_type)

0 commit comments

Comments
 (0)