Merge "VNX: raise exception if no storops"

This commit is contained in:
Jenkins 2016-09-30 21:32:02 +00:00 committed by Gerrit Code Review
commit 0e75a1e3b5

View File

@ -81,6 +81,9 @@ class Client(object):
def __init__(self, ip, username, password, scope,
naviseccli, sec_file):
self.naviseccli = naviseccli
if not storops:
msg = _('storops Python library is not installed.')
raise exception.VolumeBackendAPIException(message=msg)
self.vnx = storops.VNXSystem(ip=ip,
username=username,
password=password,