1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix initializing err in _get_err_from_resp_json

This commit is contained in:
Hiroaki Nakamura 2016-07-05 21:34:27 +09:00 committed by Matt Clay
parent e3c402ada3
commit 382f9b0999

View file

@ -124,6 +124,7 @@ class LXDClient(object):
@staticmethod @staticmethod
def _get_err_from_resp_json(resp_json): def _get_err_from_resp_json(resp_json):
err = None
metadata = resp_json.get('metadata', None) metadata = resp_json.get('metadata', None)
if metadata is not None: if metadata is not None:
err = metadata.get('err', None) err = metadata.get('err', None)