1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Fix AttributeError: 'NoneType' object has no attribute 'send'

Fix #1014
This commit is contained in:
Julien Duponchelle 2017-05-05 17:16:07 +02:00
parent 930e7089db
commit bda36081a9
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -103,8 +103,8 @@ class Bridge(Device):
:param nio: NIO instance to remove
"""
yield from self._hypervisor.send('nio_bridge remove_nio "{name}" {nio}'.format(name=self._name, nio=nio))
if self._hypervisor:
yield from self._hypervisor.send('nio_bridge remove_nio "{name}" {nio}'.format(name=self._name, nio=nio))
self._nios.remove(nio)
@property