Commit 0fa4efaa authored by Antoine Catton's avatar Antoine Catton

Bugfix: modify ComputerPartition.rename in order to avoid sending 'None'

string to vifib master.
parent 74626eee
......@@ -379,12 +379,14 @@ class ComputerPartition(SlapDocument):
'message': message})
def rename(self, new_name, slave_reference=None):
self._connection_helper.POST('/renameSoftwareInstance', {
'computer_id': self._computer_id,
'computer_partition_id': self._computer_id,
'new_name': new_name,
'slave_reference': slave_reference,
})
post_dict = dict(
computer_id=self._computer_id,
computer_partition_id=self._partition_id,
new_name=new_name,
)
if slave_reference is not None:
post_dict.update(slave_reference=slave_reference)
self._connection_helper.POST('/softwareInstanceRename', post_dict)
def getId(self):
return self._partition_id
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment