1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Fix typo in error message about the GNS3 VM

This commit is contained in:
Julien Duponchelle 2016-10-24 15:16:53 +02:00
parent 10e7b32409
commit b9e7ccc14f
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -299,7 +299,7 @@ class Controller:
except KeyError:
server_config = Config.instance().get_section_config("Server")
if compute_id == "vm":
raise aiohttp.web.HTTPNotFound(text="You try to use a node on the GNS3 VM server but the GNS3 is not configured")
raise aiohttp.web.HTTPNotFound(text="You try to use a node on the GNS3 VM server but the GNS3 VM is not configured")
raise aiohttp.web.HTTPNotFound(text="Compute ID {} doesn't exist".format(compute_id))
def has_compute(self, compute_id):