From 22fcfffce74792f193d6dab5759efaf79c67dc27 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 19 Aug 2016 17:51:22 +0200 Subject: [PATCH] Fix a typo --- gns3server/controller/topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/topology.py b/gns3server/controller/topology.py index 5805c846..df39dda7 100644 --- a/gns3server/controller/topology.py +++ b/gns3server/controller/topology.py @@ -431,7 +431,7 @@ def _create_cloud(node, old_node, icon): elif old_port["name"].startswith("nio_tap"): port_type = "tap" else: - raise NotImplementedError("The conversion of cloud with {} is not supporterd".format(old_port["name"])) + raise NotImplementedError("The conversion of cloud with {} is not supported".format(old_port["name"])) port = { "interface": old_port["name"].split(":")[1],