fixing error in conditional introduced by conflict

reviewed-by: Edison Su
This commit is contained in:
Prasanna Santhanam 2012-03-21 12:23:14 +05:30
parent 7d085b2540
commit cb58676ff8
1 changed files with 2 additions and 2 deletions

View File

@ -143,10 +143,10 @@ class cloudConnection(object):
else:
result = self.make_request_without_auth(commandName, requests)
if result is None:
return None
if self.logging is not None:
self.logging.debug("got result: %s"%result)
if result is None:
return None
result = jsonHelper.getResultObj(result, response)
if raw or isAsync == "false":