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

Cosmetic changes.

This commit is contained in:
grossmj 2016-08-20 11:10:34 -06:00
parent 8f7be87b1e
commit faae248487

View File

@ -184,7 +184,7 @@ class Controller:
for compute in self._computes.values():
if name and compute.name == name:
raise aiohttp.web.HTTPConflict(text="Compute name {} is duplicate".format(name))
raise aiohttp.web.HTTPConflict(text='Compute name "{}" already exists'.format(name))
compute = Compute(compute_id=compute_id, controller=self, name=name, **kwargs)
self._computes[compute.id] = compute
@ -267,7 +267,7 @@ class Controller:
for project in self._projects.values():
if name and project.name == name:
raise aiohttp.web.HTTPConflict(text="Project name {} is duplicate".format(name))
raise aiohttp.web.HTTPConflict(text='Project name "{}" already exists'.format(name))
project = Project(project_id=project_id, controller=self, name=name, **kwargs)
self._projects[project.id] = project
return self._projects[project.id]