Skip to content

Commit 616fca5

Browse files
committed
Adding return value to create_iscsi function
1 parent 921b49a commit 616fca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SoftLayer/managers/iscsi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def create_iscsi(self, size=None, location=None):
6464
item_price = self._find_item_prices(int(size),
6565
categorycode='iscsi')
6666
iscsi_order = self._build_order(item_price, location)
67-
self.product_order.placeOrder(iscsi_order)
67+
return self.product_order.placeOrder(iscsi_order)
6868

6969
def list_iscsi(self):
7070
"""List iSCSI volume."""

0 commit comments

Comments
 (0)