From b9e7ccc14f292760109220486bf7692cad9ee710 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 24 Oct 2016 15:16:53 +0200 Subject: [PATCH] Fix typo in error message about the GNS3 VM --- gns3server/controller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/__init__.py b/gns3server/controller/__init__.py index e48afb959..12c318a0a 100644 --- a/gns3server/controller/__init__.py +++ b/gns3server/controller/__init__.py @@ -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):