From 198027cb818df8f99662f78e0eeb79a9267dcf8e Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 8 Apr 2013 00:35:50 -0400 Subject: [PATCH] fix NameError --- plstackapi/planetstack/api/roles.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plstackapi/planetstack/api/roles.py b/plstackapi/planetstack/api/roles.py index 12a21b8..5d1bfaf 100644 --- a/plstackapi/planetstack/api/roles.py +++ b/plstackapi/planetstack/api/roles.py @@ -4,9 +4,9 @@ from plstackapi.planetstack.models import * def auth_check(auth): - client = OpenStackShell(username=auth['Username'], - password=auth['AuthMethod'], - tenant=auth['LoginBase']) + client = OpenStackDriver(username=auth['Username'], + password=auth['AuthMethod'], + tenant=auth['LoginBase']) client.authenticate() return client -- 2.47.0