From dad5b09702a76e5db6a815fad3d6abbed1fa8614 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 29 May 2009 16:53:17 +0000 Subject: [PATCH] fix bug shell_version should be plshell_version --- geni/util/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geni/util/nodes.py b/geni/util/nodes.py index 673d918f..a372cb53 100644 --- a/geni/util/nodes.py +++ b/geni/util/nodes.py @@ -182,7 +182,7 @@ class Nodes(SimpleStorage): if self.api.plshell_version in ['4.2']: interfaces = self.api.plshell.GetNodeNetworks(self.api.plauth, interface_ids) - elif self.api.shell_version in ['4.3']: + elif self.api.plshell_version in ['4.3']: interfaces = self.api.plshell.GetInterfaces(self.api.plauth, interface_ids) else: raise GeniAPIError, "Unsupported plcapi version ", \ -- 2.47.0