We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e2d62 commit fa63330Copy full SHA for fa63330
lib/datadog_backup/local_filesystem.rb
@@ -34,7 +34,7 @@ def dump(object)
34
when :json
35
JSON.pretty_generate(object.deep_sort(array: disable_array_sort ? false : true))
36
when :yaml
37
- YAML.dump(object.deep_sort(array: disable_array_sort ? false : true))
+ YAML.dump(object.deep_sort(array: disable_array_sort ? false : true)).gsub('"y":','y:')
38
else
39
raise 'invalid output_format specified or not specified'
40
end
0 commit comments