Skip to content

Commit

Permalink
Fix rename ethernet switch doesn't release the name
Browse files Browse the repository at this point in the history
Fix #1460
  • Loading branch information
julien-duponchelle committed Sep 3, 2016
1 parent 190e17b commit 0495429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3/modules/dynamips/nodes/ethernet_switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ def _updateCallback(self, result, error=False, **kwargs):
self.server_error_signal.emit(self.id(), result["message"])
else:
if "name" in result:
self._settings["name"] = result["name"]
self.updateAllocatedName(result["name"])
self._settings["name"] = result["name"]
log.info("{} has been updated".format(self.name()))
self.updated_signal.emit()

Expand Down

0 comments on commit 0495429

Please sign in to comment.