Default msg param to AnsibleError to avoid serialization problems

This commit is contained in:
James Cammarata 2015-12-02 12:40:46 -05:00
parent ed4a06d8ef
commit 38c11e2239

View file

@ -44,7 +44,7 @@ class AnsibleError(Exception):
which should be returned by the DataLoader() class.
'''
def __init__(self, message, obj=None, show_content=True):
def __init__(self, message="", obj=None, show_content=True):
# we import this here to prevent an import loop problem,
# since the objects code also imports ansible.errors
from ansible.parsing.yaml.objects import AnsibleBaseYAMLObject