Merge pull request #5143 from evgkrsk/ovirt-import

Use ovirtsdk if it installed, but fall out gracefully if it is not
reviewable/pr18780/r1
Michael DeHaan 11 years ago
commit 25776cc4f2

@ -205,8 +205,12 @@ action: ovirt >
''' '''
from ovirtsdk.api import API try:
from ovirtsdk.xml import params from ovirtsdk.api import API
from ovirtsdk.xml import params
except ImportError:
print "failed=True msg='ovirtsdk required for this module'"
sys.exit(1)
# ------------------------------------------------------------------- # # ------------------------------------------------------------------- #
# create connection with API # create connection with API

Loading…
Cancel
Save