From 74656e67062b770b6037af3d7e4d3c1ca77586dd Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Thu, 5 Jun 2014 15:41:56 -0500 Subject: [PATCH] Fix typo in nova_keypair import of exceptions from novaclient Fixes #7640 --- cloud/nova_keypair | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/nova_keypair b/cloud/nova_keypair index 18674a1220a..dda549fbbef 100644 --- a/cloud/nova_keypair +++ b/cloud/nova_keypair @@ -19,7 +19,7 @@ try: from novaclient.v1_1 import client as nova_client - from novaclient import exceptions + from novaclient import exceptions as exc import time except ImportError: print("failed=True msg='novaclient is required for this module to work'")