mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-15 12:59:06 +00:00
Fixes IOS adapters and WICS cannot be removed. Fixes #282.
This commit is contained in:
parent
4aeb451ffd
commit
76fe0cb316
@ -160,7 +160,7 @@ class Router(BaseVM):
|
||||
for slot in self._slots:
|
||||
if slot:
|
||||
slot = str(slot)
|
||||
router_info["slot" + str(slot_number)] = slot
|
||||
router_info["slot" + str(slot_number)] = slot
|
||||
slot_number += 1
|
||||
|
||||
# add the wics
|
||||
@ -168,6 +168,8 @@ class Router(BaseVM):
|
||||
for wic_slot_number in range(0, len(self._slots[0].wics)):
|
||||
if self._slots[0].wics[wic_slot_number]:
|
||||
router_info["wic" + str(wic_slot_number)] = str(self._slots[0].wics[wic_slot_number])
|
||||
else:
|
||||
router_info["wic" + str(wic_slot_number)] = None
|
||||
|
||||
return router_info
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user