I try to clone a VM with this network configuration:
<interface type='ethernet'>
<mac address='52:54:00:38:53:95'/>
<target dev='m0d0'/>
<model type='e1000'/>
</interface>
and get this error:
Error setting clone parameters: cannot concatenate 'str' and 'NoneType'
objects
Traceback (most recent call last):
File "/usr/share/virt-manager/virtManager/engine.py", line 664, in
clone_domain
clone_window.show()
File "/usr/share/virt-manager/virtManager/clone.py", line 142, in show
self.reset_state()
File "/usr/share/virt-manager/virtManager/clone.py", line 190, in
reset_state
self.populate_network_list()
File "/usr/share/virt-manager/virtManager/clone.py", line 271, in
populate_network_list
net_dev and " %s" % net_dev or "")
TypeError: cannot concatenate 'str' and 'NoneType' objects
The culprit seems to be the interface type. This configuration can be
cloned:
<interface type='ethernet'>
<mac address='52:54:00:38:53:95'/>
<target dev='m0d0'/>
<model type='e1000'/>
</interface>