X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=lib%2Futil.py;h=ac92c4dac813a9b219c6ef1d1aeb694a44ac7d08;hb=refs%2Fchanges%2F44%2F8844%2F4;hp=9d33aa609d52768fa44aad67b20c5d60566a0362;hpb=f577644f99239013d63fc7c200ac2048e92712d5;p=osm%2FLW-UI.git diff --git a/lib/util.py b/lib/util.py index 9d33aa6..ac92c4d 100644 --- a/lib/util.py +++ b/lib/util.py @@ -78,7 +78,7 @@ class Util(object): def json2yaml(cls, object_json): """Converts a json object into a yaml representation""" log.debug('json2yaml') - return yaml.safe_dump(object_json, default_flow_style=False, indent=2) if not object_json is None else None + return yaml.safe_dump(object_json, default_flow_style=False, indent=4) if not object_json is None else None @classmethod def openfile(cls, filepath, mode='r', buffering=1):