Commit 694e982b by Guba Sándor

fixing prefix and typo

parent a907f92b
...@@ -25,12 +25,12 @@ def ofctl_command_execute(command): ...@@ -25,12 +25,12 @@ def ofctl_command_execute(command):
return return_val return return_val
def nw_create(vm): def create(vm):
for network in vm.network_list: for network in vm.network_list:
port_create(network) port_create(network)
def nw_delete(vm): def delete(vm):
for network in vm.network_list: for network in vm.network_list:
port_delete(network) port_delete(network)
......
...@@ -8,7 +8,6 @@ class VMInstance: ...@@ -8,7 +8,6 @@ class VMInstance:
name = None name = None
arch = None arch = None
vm_type = None vm_type = None
arch = None
os_boot = None os_boot = None
vcpu = None vcpu = None
cpu_share = None cpu_share = None
......
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 sign in to comment