Don't import novaclient, exceptions are available via cs.exceptions

pull/5132/head
Matt Martz 11 years ago
parent b3744800fb
commit 925eb1dca7

@ -98,8 +98,6 @@ except ImportError:
print("failed=True msg='pyrax required for this module'") print("failed=True msg='pyrax required for this module'")
sys.exit(1) sys.exit(1)
from novaclient.exceptions import NotFound
NON_CALLABLES = (basestring, bool, dict, int, list, NoneType) NON_CALLABLES = (basestring, bool, dict, int, list, NoneType)
@ -121,7 +119,7 @@ def rax_keypair(module, name, public_key, state):
if state == 'present': if state == 'present':
try: try:
keypair = cs.keypairs.find(name=name) keypair = cs.keypairs.find(name=name)
except NotFound: except cs.exceptions.NotFound:
try: try:
keypair = cs.keypairs.create(name, public_key) keypair = cs.keypairs.create(name, public_key)
changed = True changed = True

Loading…
Cancel
Save