Merge "Clean up bare raised pylint warning"

This commit is contained in:
Zuul 2018-09-13 16:50:39 +00:00 committed by Gerrit Code Review
commit 0fdbc4780d
3 changed files with 2 additions and 3 deletions

View File

@ -80,7 +80,6 @@ disable=
keyword-arg-before-vararg,
too-many-function-args,
unsupported-assignment-operation,
misplaced-bare-raise,
not-an-iterable,
unsupported-membership-test,
unsupported-assignment-operation,

View File

@ -2374,7 +2374,7 @@ class RestClient(object):
result = self.call(url, None, "GET", log_filter_flag=True)
if result['error']['code'] != 0:
raise
raise Exception(_('Failed to get object count.'))
if result.get("data"):
return result.get("data").get("COUNT")

View File

@ -348,7 +348,7 @@ class NaElement(object):
if isinstance(na_element, NaElement):
self._element.append(na_element._element)
return
raise
raise Exception(_('Failed to add child element.'))
def get_child_by_name(self, name):
"""Get the child element by the tag name."""