fixed indentaion problem in utils.py :359

Conflicts:
	tools/marvin/marvin/integration/lib/utils.py
This commit is contained in:
SrikanteswaraRao Talluri 2013-11-08 18:00:55 +05:30
parent d05891afa1
commit 011b87eadc

View File

@ -329,9 +329,8 @@ def is_snapshot_on_nfs(apiclient, dbconn, config, zoneid, snapshotid):
(config.mgtSvr[0].mgtSvrIp, e)) (config.mgtSvr[0].mgtSvrIp, e))
return 'snapshot exists' in result return 'snapshot exists' in result
def validateList(inp): def validateList(inp):
''' """
@name: validateList @name: validateList
@Description: 1. A utility function to validate @Description: 1. A utility function to validate
whether the input passed is a list whether the input passed is a list
@ -350,7 +349,7 @@ def validateList(inp):
default to None. default to None.
INVALID_INPUT INVALID_INPUT
EMPTY_LIST EMPTY_LIST
''' """
ret = [FAIL, None, None] ret = [FAIL, None, None]
if inp is None: if inp is None:
ret[2] = INVALID_INPUT ret[2] = INVALID_INPUT