mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
parent
7e1e63cd09
commit
e828c9068a
@ -293,7 +293,7 @@ class Project:
|
|||||||
name = base_name.format(number, id=number, name="Node")
|
name = base_name.format(number, id=number, name="Node")
|
||||||
except KeyError as e:
|
except KeyError as e:
|
||||||
raise aiohttp.web.HTTPConflict(text="{" + e.args[0] + "} is not a valid replacement string in the node name")
|
raise aiohttp.web.HTTPConflict(text="{" + e.args[0] + "} is not a valid replacement string in the node name")
|
||||||
except ValueError as e:
|
except (ValueError, IndexError) as e:
|
||||||
raise aiohttp.web.HTTPConflict(text="{} is not a valid replacement string in the node name".format(base_name))
|
raise aiohttp.web.HTTPConflict(text="{} is not a valid replacement string in the node name".format(base_name))
|
||||||
if name not in self._allocated_node_names:
|
if name not in self._allocated_node_names:
|
||||||
self._allocated_node_names.add(name)
|
self._allocated_node_names.add(name)
|
||||||
|
Loading…
Reference in New Issue
Block a user