Skip to content

Commit 030bb5a

Browse files
author
Ian Sutton
committed
minor
1 parent 109ea5a commit 030bb5a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

SoftLayer/managers/block.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -623,13 +623,11 @@ def refresh_dep_dupe(self, volume_id, snapshot_id):
623623
:param integer volume_id: The id of the volume
624624
:param integer snapshot_id: The id of the snapshot
625625
"""
626-
return self.client.call('Network_Storage', 'refreshDependentDuplicate',
627-
snapshot_id, id=volume_id)
626+
return self.client.call('Network_Storage', 'refreshDependentDuplicate', snapshot_id, id=volume_id)
628627

629628
def convert_dep_dupe(self, volume_id):
630629
"""Convert a dependent duplicate volume to an indepdent volume.
631630
632631
:param integer volume_id: The id of the volume.
633632
"""
634-
return self.client.call('Network_Storage', 'convertCloneDependentToIndependent',
635-
id=volume_id)
633+
return self.client.call('Network_Storage', 'convertCloneDependentToIndependent', id=volume_id)

docs/cli/file.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ File Commands
9999
:prog: file volume-limits
100100
:show-nested:
101101

102+
.. click:: SoftLayer.CLI.file.refresh:cli
103+
:prog file volume-refresh
104+
:show-nested:
105+
106+
.. click:: SoftLayer.CLI.file.convert:cli
107+
:prog file volume-convert
108+
:show-nested:
109+
102110
.. click:: SoftLayer.CLI.file.snapshot.schedule_list:cli
103111
:prog: file snapshot-schedule-list
104112
:show-nested:

0 commit comments

Comments
 (0)