Skip to content

Commit

Permalink
Just change serialize
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Place committed Feb 25, 2015
1 parent 53881ac commit 6c23cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/utils/serializers/yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def deserialize(stream_or_string, **options):
:param options: options given to lower yaml module.
"""

options.setdefault('Loader', Loader)
options.setdefault('Loader', BaseLoader)
try:
return yaml.load(stream_or_string, **options)
except ScannerError as error:
Expand Down

0 comments on commit 6c23cf8

Please sign in to comment.